forked from teppeis/grunt-parallelize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.15 KB
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
{
"name": "grunt-parallelize",
"description": "Parallelize your task.",
"version": "1.0.0",
"homepage": "https://github.com/teppeis/grunt-parallelize",
"author": {
"name": "Teppei Sato",
"email": "teppeis@gmail.com",
"url": "http://twitter.com/teppeis"
},
"repository": {
"type": "git",
"url": "git://github.com/teppeis/grunt-parallelize.git"
},
"bugs": {
"url": "https://github.com/teppeis/grunt-parallelize/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/teppeis/grunt-parallelize/blob/master/LICENSE"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"grunt",
"gruntplugin"
],
"dependencies": {
"async": "~0.2.9",
"lodash": "~2.4.1",
"lpad": "~0.1.0"
},
"devDependencies": {
"expect.js": "~0.2.0",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.7.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.8.1",
"load-grunt-tasks": "~0.2.1",
"mocha": "~1.16.1",
"time-grunt": "~0.2.5"
},
"peerDependencies": {
"grunt": "~0.4.2"
}
}