-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 1.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "nwjs-macappstore-builder",
"version": "3.1.6",
"description": "Easily build and publish NW.js apps on the Mac App Store.",
"keywords": [
"cli-app",
"cli",
"bin",
"shell",
"script",
"nw",
"nwjs",
"node-webkit",
"mas",
"appstore",
"macappstore",
"osx",
"mac"
],
"homepage": "https://github.com/johansatge/nwjs-macappstore-builder",
"bugs": {
"url": "https://github.com/johansatge/nwjs-macappstore-builder/issues"
},
"license": "MIT",
"author": {
"name": "Johan Satgé",
"url": "http://johansatge.com"
},
"files": [
"src/builder.js",
"src/steps",
"src/cli.js"
],
"main": "src/builder.js",
"bin": {
"nwjs-macappstore-builder": "src/cli.js"
},
"repository": "johansatge/nwjs-macappstore-builder",
"dependencies": {
"async": "^1.5.2",
"colors": "^1.1.2",
"glob": "^7.0.3",
"plist": "^1.2.0",
"replace": "^0.3.0",
"uglify-js": "^2.6.2",
"validator.js": "^1.2.3",
"yargs": "^4.7.0"
},
"devDependencies": {
"mocha": "^2.4.5"
},
"engines": {
"node": ">=0.12.0"
},
"os": [
"darwin"
],
"scripts": {
"test": "./node_modules/.bin/mocha -u tdd --reporter spec --timeout 20000"
}
}