-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "electron-packager-interactive",
"version": "0.1.3",
"description": "An interactive implementation of electron-packager",
"main": "cli.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js lib -d dist",
"prestart": "standard && npm run build",
"start": "./cli.js",
"prepublish": "npm run build",
"precommit": "standard",
"prepush": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Urucas/electron-packager-interactive.git"
},
"preferGlobal": true,
"bin": {
"electron-packager-interactive": "./cli.js",
"epi": "./cli.js"
},
"keywords": [
"electron",
"package",
"linux",
"osx",
"win"
],
"author": "Urucas <hello@urucas.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Urucas/electron-packager-interactive/issues"
},
"homepage": "https://github.com/Urucas/electron-packager-interactive#readme",
"dependencies": {
"electron-packager": "^8.7.0",
"inquirer": "^0.9.0",
"semafor": "0.0.1"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"husky": "^0.12.0",
"mocha": "^2.5.3",
"standard": "^8.6.0"
},
"standard": {
"ignore": [
"dist/"
]
}
}