forked from electron-userland/electron-installer-dmg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "electron-installer-dmg",
"description": "Create DMG installers for your electron apps.",
"version": "3.0.0",
"main": "./src/index.js",
"author": "Lucas Hrabovsky <[email protected]> (http://imlucas.com)",
"homepage": "http://github.com/electron-userland/electron-installer-dmg",
"repository": {
"type": "git",
"url": "git://github.com/electron-userland/electron-installer-dmg.git"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text npm run spec",
"lint": "eslint src test bin",
"spec": "mocha",
"test": "npm run lint && npm run spec"
},
"bin": {
"electron-installer-dmg": "bin/electron-installer-dmg.js"
},
"engines": {
"node": ">= 12.13.0"
},
"files": [
"bin",
"resources",
"src",
"usage.txt"
],
"dependencies": {
"debug": "^4.3.2",
"minimist": "^1.1.1"
},
"optionalDependencies": {
"appdmg": "^0.6.4"
},
"license": "Apache-2.0",
"devDependencies": {
"@electron/get": "^1.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.23.4",
"extract-zip": "^2.0.1",
"mocha": "^9.0.3",
"nyc": "^15.1.0"
},
"keywords": [
"mongodb.js",
"electron",
"installer",
"electron-installer",
"gulpfriendly",
"dmg",
"electron create dmg"
]
}