-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
47 lines (47 loc) · 1.05 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
42
43
44
45
46
47
{
"name": "rcedit",
"version": "0.0.0-development",
"description": "Node module to edit resources of exe",
"main": "lib/rcedit.js",
"types": "lib/index.d.ts",
"files": [
"bin",
"lib/index.d.ts"
],
"scripts": {
"docs:build": "node script/build-docs.js",
"mocha": "mocha test/*.js",
"test": "npm run lint && npm run tsd && npm run mocha",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "standard",
"lint:ts": "ts-standard",
"tsd": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/node-rcedit.git"
},
"bugs": {
"url": "https://github.com/electron/node-rcedit/issues"
},
"license": "MIT",
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"cross-spawn-windows-exe": "^1.1.0"
},
"devDependencies": {
"got": "^11.8.0",
"mocha": "^10.1.0",
"standard": "^17.1.0",
"temp": "^0.9.4",
"ts-standard": "^12.0.2",
"tsd": "^0.25.0",
"typedoc": "^0.24.8",
"typescript": "^4.1.2"
},
"tsd": {
"directory": "test"
}
}