-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 990 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": "grunt-subgrunt",
"version": "1.3.0",
"description": "Run sub-projects' grunt tasks.",
"repository": {
"type": "git",
"url": "git://github.com/tusbar/grunt-subgrunt.git"
},
"scripts": {
"test": "grunt test",
"lint": "xo && (cd test/fixtures && xo)"
},
"keywords": [
"gruntplugin",
"subgrunt",
"subproject",
"submodule"
],
"author": {
"name": "Bertrand Marron",
"url": "https://github.com/tusbar"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tusbar/grunt-subgrunt/issues"
},
"dependencies": {
"async": "^3.2.0",
"glob": "^7.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^2.0.0",
"xo": "^0.24.0"
},
"engines": {
"node": ">=6"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"unicorn/filename-case": "off"
}
}
}