-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "steal-electron",
"version": "1.1.1",
"description": "Build Electron applications with StealJS",
"main": "lib/main.js",
"scripts": {
"jshint": "jshint lib/. --config",
"mocha": "mocha test/test.js",
"test": "npm run jshint && npm run mocha",
"publish": "git push origin && git push origin --tags",
"release:pre": "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",
"coverage": "istanbul cover _mocha -- test/test --timeout 600000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/test --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stealjs/steal-electron.git"
},
"keywords": [
"electron",
"StealJS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/stealjs/steal-electron/issues"
},
"homepage": "https://github.com/stealjs/steal-electron",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"electron-packager": "^8.5.0",
"fs-extra": "^4.0.1",
"pdenodeify": "^0.1.0"
},
"devDependencies": {
"copy": "^0.3.0",
"coveralls-send": "0.0.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.1",
"mocha": "^3.2.0"
}
}