regedit
Version:
Read, Write, List and do all sorts of funky stuff to the windows registry using node.js and windows script host
42 lines (41 loc) • 1.04 kB
JSON
{
"name": "regedit",
"version": "5.1.4",
"description": "Read, Write, List and do all sorts of funky stuff to the windows registry using node.js and windows script host",
"author": "Yaniv Kessler",
"homepage": "https://github.com/kessler/node-regedit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kessler/node-regedit"
},
"bugs": {
"url": "https://github.com/kessler/node-regedit/issues"
},
"keywords": [
"windows",
"registry"
],
"main": "index.js",
"type": "commonjs",
"types": "./regedit.d.ts",
"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": "^4.1.0",
"if-async": "^3.7.4",
"stream-slicer": "0.0.6",
"through2": "^0.6.3"
},
"devDependencies": {
"eslint": "^8.15.0",
"husky": "^0.13.4",
"mocha": "^10.0.0",
"should": "^13.2.3"
}
}