forked from rakuten-frontend/grunt-appdmg
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.19 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
60
{
"name": "grunt-appdmg",
"version": "1.0.0",
"description": "Grunt plugin for generating Mac OS X DMG-images.",
"author": {
"name": "Rakuten, Inc."
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rakuten-frontend/grunt-appdmg.git"
},
"hopmepage": "https://github.com/rakuten-frontend/grunt-appdmg",
"bugs": {
"url": "https://github.com/rakuten-frontend/grunt-appdmg/issues"
},
"keywords": [
"gruntplugin",
"dmg",
"mac",
"osx"
],
"engines": {
"node": ">=4"
},
"os": [
"darwin"
],
"scripts": {
"test": "grunt test --verbose",
"grunt": "grunt"
},
"main": "tasks/appdmg.js",
"files": [
"tasks"
],
"dependencies": {
"appdmg": "^0.6.0",
"chalk": "^2.4.2",
"repeat-string": "^1.6.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-xo-space": "^0.21.0",
"grunt": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-eslint": "^22.0.0",
"load-grunt-tasks": "^5.1.0"
},
"eslintConfig": {
"extends": "xo-space",
"rules": {
"quote-props": [
"error",
"as-needed"
]
}
}
}