-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "electron-installer-windows",
"description": "Create a Windows package for your Electron app.",
"version": "3.0.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-windows.git"
},
"keywords": [
"electron",
"windows"
],
"main": "src/installer.js",
"bin": {
"electron-installer-windows": "src/cli.js"
},
"scripts": {
"lint": "eslint .",
"spec": "mocha",
"test": "npm run lint && npm run spec"
},
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"@malept/cross-spawn-promise": "^2.0.0",
"debug": "^4.1.1",
"electron-installer-common": "^0.10.0",
"fs-extra": "^10.0.0",
"lodash": "^4.17.15",
"parse-author": "^2.0.0",
"which": "^2.0.2",
"yargs": "^17.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"finalhandler": "^1.1.2",
"mocha": "^9.0.1",
"promise-retry": "^2.0.1",
"serve-static": "^1.14.1",
"tmp-promise": "^3.0.2"
}
}