forked from electron-archive/grunt-electron-installer
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "electron-installer-squirrel-windows",
"version": "1.3.0",
"description": "Generate Windows installers for Electron apps using Squirrel.",
"author": "Lucas Hrabovsky <[email protected]> (http://imlucas.com)",
"homepage": "http://github.com/mongodb-js/electron-installer-squirrel-windows",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/electron-installer-squirrel-windows.git"
},
"scripts": {
"ci": "mocha",
"test": "mocha",
"coverage": "./node_modules/istanbul/lib/cli.js cover _mocha",
"check": "mongodb-js-precommit"
},
"precommit": [
"check"
],
"bin": {
"electron-installer-squirrel-windows": "bin/electron-installer-squirrel-windows.js"
},
"check": {
"ignore": [
"coverage/**/*"
]
},
"dependencies": {
"ampersand-model": "^6.0.2",
"asar": "~0.9.1",
"async": "^1.5.2",
"debug": "^2.2.0",
"fs-extra": "^0.26.5",
"lodash.assign": "^4.0.1",
"lodash.clone": "^4.0.2",
"lodash.foreach": "^4.0.0",
"lodash.template": "^4.0.1",
"minimist": "^1.2.0",
"temp": "^0.8.3",
"titlecase": "^1.0.2"
},
"keywords": [
"mongodb.js",
"electron",
"electron-installer",
"squirrel",
"squirrel.windows",
"electron windows setup.exe"
],
"devDependencies": {
"electron-installer-fixture-windows": "^0.0.3",
"eslint-config-mongodb-js": "^1.0.6",
"istanbul": "^0.4.2",
"mocha": "^2.4.4",
"mongodb-js-precommit": "^0.2.8",
"pre-commit": "^1.1.2"
}
}