-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
56 lines (56 loc) · 1.07 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": "grunt-concurrent",
"version": "3.0.0",
"description": "Run grunt tasks concurrently",
"license": "MIT",
"repository": "sindresorhus/grunt-concurrent",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && grunt"
},
"files": [
"tasks"
],
"keywords": [
"gruntplugin",
"concurrent",
"parallel",
"simultaneous",
"optimize",
"speed",
"perf",
"performance",
"fast",
"faster"
],
"dependencies": {
"arrify": "^2.0.1",
"async": "^3.1.0",
"indent-string": "^4.0.0",
"pad-stream": "^2.0.0"
},
"devDependencies": {
"cross-spawn": "^6.0.5",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-nodemon": "^0.4.0",
"grunt-simple-mocha": "^0.4.0",
"nodemon": "^1.2.1",
"path-exists": "^4.0.0",
"supports-color": "^7.0.0",
"xo": "^0.24.0"
},
"peerDependencies": {
"grunt": ">=1"
}
}