-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "steal-nw",
"version": "1.0.0",
"description": "Build nw.js applications with StealJS",
"main": "lib/main.js",
"scripts": {
"test": "mocha test/test.js",
"publish": "git push origin && git push origin --tags",
"release:prerelease": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/stealjs/steal-nw.git"
},
"keywords": [
"nw.js",
"nwjs",
"StealJS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/stealjs/steal-nw/issues"
},
"homepage": "https://github.com/stealjs/steal-nw",
"dependencies": {
"cheerio": "^0.22.0",
"fs-extra": "^2.0.0",
"nw-builder": "^3.1.2",
"pdenodeify": "^0.1.0",
"rimraf": "^2.4.0"
},
"system": {
"npmDependencies": []
},
"devDependencies": {
"copy": "^0.3.0",
"mocha": "^3.2.0"
}
}