-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "grunt-parallelize",
"description": "Parallelize your task.",
"version": "1.1.7",
"author": {
"name": "Teppei Sato",
"email": "teppeis@gmail.com"
},
"engines": {
"node": ">= 0.10.0"
},
"main": "./tasks/parallelize.js",
"files": [
"lib",
"tasks"
],
"scripts": {
"lint": "eslint lib tasks test/lib test/*_test.js",
"mocha": "mocha test/*_test.js",
"test": "npm run lint && npm run mocha"
},
"dependencies": {
"async": "^1.5.0",
"lodash": "^4.6.1",
"lpad": "^2.0.1",
"tmp": "0.0.28"
},
"devDependencies": {
"ansidiff": "^1.0.0",
"eslint": "^2.11.0",
"eslint-config-teppeis": "^2.6.0",
"eslint-plugin-node": "^1.5.2",
"expect.js": "^0.3.1",
"glob": "^7.0.3",
"grunt": "^1.0.1",
"mocha": "^2.4.5",
"rimraf": "^2.3.2"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"homepage": "https://github.com/teppeis/grunt-parallelize",
"repository": {
"type": "git",
"url": "git://github.com/teppeis/grunt-parallelize.git"
},
"bugs": {
"url": "https://github.com/teppeis/grunt-parallelize/issues"
},
"keywords": [
"grunt",
"gruntplugin"
],
"license": "MIT"
}