-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 965 Bytes
/
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
{
"name": "nwjs-packager-demo",
"version": "1.0.0",
"description": "An application used to test nwjs-packager",
"main": "bin/index.js",
"scripts": {
"start": "nwp -r",
"build": "nwp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charlielee/nwjs-packager-demo.git"
},
"author": "Charlie Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/charlielee/nwjs-packager-demo/issues"
},
"homepage": "https://github.com/charlielee/nwjs-packager-demo#readme",
"nwjs-packager": {
"nwVersion": "0.45.4",
"nwFlavor": "sdk",
"appFriendlyName": "Demo App",
"appMacIcon": "bin/icon.icns",
"appMacBundleIdentifier": "uk.charlielee.nwjs-packager-demo",
"appWinIcon": "bin/icon.ico",
"files": ["bin/**"],
"builds": {
"linux": {"tar.gz": true},
"osx": {"zip": true},
"win": {"zip": true}
}
}
}