forked from sindresorhus/create-dmg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 859 Bytes
/
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
{
"name": "create-dmg",
"version": "1.3.0",
"description": "Create a good-looking DMG for your macOS app in seconds",
"license": "MIT",
"repository": "sindresorhus/create-dmg",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"bin": {
"create-dmg": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"assets"
],
"keywords": [
"cli-app",
"cli",
"create",
"dmg",
"disk",
"image",
"macos",
"mac",
"app",
"application",
"apple"
],
"dependencies": {
"appdmg": "^0.4.5",
"execa": "^0.6.3",
"meow": "^3.4.2",
"ora": "^1.2.0",
"plist": "^2.0.1"
},
"devDependencies": {
"ava": "*",
"tempfile": "^1.1.1",
"xo": "*"
}
}