-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
54 lines (54 loc) · 1.38 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-zip",
"description": "Create a zip file with support for symlinks required by electron on osx.",
"version": "0.1.2",
"author": "Lucas Hrabovsky <[email protected]> (http://imlucas.com)",
"homepage": "https://github.com/electron-userland/electron-installer-zip",
"repository": {
"type": "git",
"url": "git://github.com/electron-userland/electron-installer-zip.git"
},
"scripts": {
"check": "mongodb-js-precommit",
"coverage": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint .",
"spec": "mocha",
"test": "npm run lint && npm run spec"
},
"precommmit": [
"check",
"test"
],
"bin": {
"electron-installer-zip": "bin/electron-installer-zip.js"
},
"dependencies": {
"archiver": "^5.3.0",
"async": "^3.2.0",
"debug": "^4.3.2",
"electron-installer-run": "^1.0.2",
"fs-extra": "^10.0.0",
"mongodb-js-cli": "0.0.3",
"zip-folder": "^1.0.0"
},
"license": "Apache-2.0",
"devDependencies": {
"eslint-config-mongodb-js": "^5.0.3",
"mocha": "^9.0.2",
"mongodb-js-fmt": "1.0.0",
"mongodb-js-precommit": "^2.2.1",
"nyc": "^15.1.0",
"pre-commit": "^1.0.10",
"proxyquire": "^2.1.3",
"sinon": "^13.0.0"
},
"keywords": [
"mongodb.js",
"electron",
"installer",
"electron-installer",
"gulpfriendly",
"zip",
"electron create zip"
]
}