forked from electron-userland/electron-installer-debian
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
57
58
59
60
{
"name": "electron-installer-debian",
"description": "Create a Debian package for your Electron app.",
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "Daniel Perez Alvarez",
"email": "[email protected]",
"url": "http://unindented.org/"
},
"repository": {
"type": "git",
"url": "git://github.com/electron-userland/electron-installer-debian.git"
},
"keywords": [
"electron",
"debian"
],
"os": [
"darwin",
"linux"
],
"main": "src/installer.js",
"bin": {
"electron-installer-debian": "src/cli.js"
},
"scripts": {
"lint": "eslint .",
"spec": "nyc mocha",
"test": "npm run lint && npm run spec"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"debug": "^4.0.1",
"electron-installer-common": "^0.4.0",
"fs-extra": "^7.0.0",
"get-folder-size": "^2.0.0",
"lodash": "^4.17.4",
"pify": "^4.0.0",
"semver": "^5.4.1",
"word-wrap": "^1.2.3",
"yargs": "^12.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.0.5",
"mz": "^2.7.0",
"nyc": "^13.0.1",
"promise-retry": "^1.1.1",
"temp": "^0.8.3"
}
}