| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "regedit",
- "version": "3.0.0",
- "description": "Read, Write, List and do all sorts of funky stuff to the windows registry using node.js and windows script host",
- "keywords": [
- "windows",
- "registry"
- ],
- "main": "index.js",
- "scripts": {
- "lint": "eslint . --fix",
- "lint:src": "eslint . --fix --ignore-pattern test/",
- "lint:test": "eslint test --fix",
- "test": "mocha -R spec",
- "prepush": "npm run lint"
- },
- "dependencies": {
- "debug": "^2.1.1",
- "if-async": "^3.7.4",
- "stream-slicer": "0.0.6",
- "through2": "^0.6.3"
- },
- "author": "Yaniv Kessler",
- "bugs": {
- "url": "https://github.com/ironSource/node-regedit/issues"
- },
- "os": [
- "win32"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/ironSource/node-regedit"
- },
- "homepage": "https://github.com/ironSource/node-regedit",
- "license": "MIT",
- "devDependencies": {
- "eslint": "^3.19.0",
- "husky": "^0.13.4",
- "mocha": "^2.3.4",
- "should": "^4.4.2"
- }
- }
|