-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "shrinkray",
"version": "1.1.2",
"description": "Create desktop apps using HTML/CSS/Javascript",
"main": "lib/index.js",
"bin": {
"shrinkray": "bin/shrinkray.js"
},
"scripts": {
"test": "./bin/shrinkray.js -i tests/fixtures/simple -o build/hello.app",
"build:app": "./tools/create-app-template.sh",
"build:list": "xcodebuild -list -project desktop.xcodeproj",
"publish:patch": "npm run build:app; npm version patch; git push; git push --tags; npm publish",
"publish:minor": "npm run build:app; npm version minor; git push; git push --tags; npm publish",
"publish:major": "npm run build:app; npm version major; git push; git push --tags; npm publish",
"postinstall": "node ./bin/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francoislaberge/shrinkray.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"Desktop",
"App",
"Generator",
"CLI"
],
"author": "Francois Laberge <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/francoislaberge/shrinkray/issues"
},
"homepage": "https://github.com/francoislaberge/shrinkray#readme",
"dependencies": {
"commander": "^2.9.0",
"fs-extra": "^2.1.2"
}
}