forked from nwutils/nwjs-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
{
"name": "nwjs-packager",
"version": "1.4.6",
"description": "Module to build, add packages and release to GitHub NW.js apps",
"main": "bin/index.js",
"scripts": {
"lint": "eslint ./src",
"test": "mocha"
},
"bin": {
"nwp": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charlielee/nwjs-packager.git"
},
"author": "Charlie Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/charlielee/nwjs-packager/issues"
},
"homepage": "https://github.com/charlielee/nwjs-packager#readme",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"mocha": "^7.1.1"
},
"dependencies": {
"archiver": "^3.1.1",
"bent": "^7.1.2",
"extract-zip": "^2.0.0",
"glob": "^7.1.6",
"minimist": "^1.2.5",
"mkdirp": "^1.0.3",
"rcedit": "^2.1.1",
"recursive-copy": "^2.0.10",
"rimraf": "^3.0.2",
"simple-plist": "^1.1.0",
"tar": "^6.0.1"
}
}