-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 967 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 967 Bytes
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
{
"name": "nwjs-packager",
"version": "1.5.1",
"description": "Module to build, add packages and release to GitHub NW.js apps",
"main": "bin/index.js",
"scripts": {
"lint": "eslint ./src"
},
"bin": {
"nwp": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwutils/nwjs-packager.git"
},
"author": "Charlie Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/nwutils/nwjs-packager/issues"
},
"homepage": "https://github.com/nwutils/nwjs-packager#readme",
"devDependencies": {
"eslint": "^9.10.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.7.3"
},
"dependencies": {
"archiver": "^7.0.1",
"bent": "^7.1.2",
"extract-zip": "^2.0.0",
"glob": "^11.0.0",
"minimist": "^1.2.5",
"mkdirp": "^3.0.1",
"rcedit": "^4.0.1",
"recursive-copy": "^2.0.10",
"rimraf": "^6.0.1",
"simple-plist": "^1.1.0",
"tar": "^7.4.3"
}
}