forked from electron-userland/electron-installer-debian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "electron-installer-debian",
"description": "Create a Debian package for your Electron app.",
"version": "0.4.0",
"license": "MIT",
"author": {
"name": "Daniel Perez Alvarez",
"email": "[email protected]",
"url": "http://unindented.org/"
},
"repository": {
"type": "git",
"url": "git://github.com/unindented/electron-installer-debian.git"
},
"keywords": [
"electron",
"debian"
],
"os": [
"darwin",
"linux"
],
"main": "src/installer.js",
"bin": {
"electron-installer-debian": "src/cli.js"
},
"scripts": {
"clean": "rimraf test/fixtures/out",
"lint": "eslint .",
"spec": "mocha",
"test": "npm run clean && npm run lint && npm run spec"
},
"dependencies": {
"asar": "^0.12.0",
"async": "^2.0.0",
"debug": "^2.2.0",
"fs-extra": "^1.0.0",
"get-folder-size": "^1.0.0",
"glob": "^7.0.0",
"lodash": "^4.13.0",
"temp": "^0.8.3",
"word-wrap": "^1.1.0",
"yargs": "^6.0.0"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^3.2.2",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.0",
"retry": "^0.10.0",
"rimraf": "^2.5.1"
}
}