-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "regedit",
"version": "5.1.3",
"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"
}
}