-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
63 lines (63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "electron-installer-debian",
"description": "Create a Debian package for your Electron app.",
"version": "3.2.0",
"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"
},
"files": [
"bin",
"src",
"resources"
],
"scripts": {
"lint": "eslint .",
"spec": "nyc mocha",
"test": "npm run lint && npm run spec"
},
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"@malept/cross-spawn-promise": "^1.0.0",
"debug": "^4.1.1",
"electron-installer-common": "^0.10.2",
"fs-extra": "^9.0.0",
"get-folder-size": "^2.0.1",
"lodash": "^4.17.4",
"word-wrap": "^1.2.3",
"yargs": "^16.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"promise-retry": "^2.0.1",
"tmp-promise": "^3.0.2"
}
}