-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 904 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
{
"name": "gulp-group",
"version": "1.0.0",
"description": "Grouping tasks for gulp",
"main": "index.js",
"author": {
"name": "Adriaan Callaerts",
"email": "[email protected]",
"url": "https://github.com/call-a3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/call-a3/gulp-group.git"
},
"bugs": {
"url": "https://github.com/call-a3/gulp-group/issues"
},
"engines": {
"node": "^0.12.0",
"npm": "^2.10.1"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"peerDependencies": {
"gulp": "^3.x.x"
},
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"gulp": "^3.8.11",
"istanbul": "^0.4.5",
"mocha": "^2.2.5",
"sinon": "^12.0.1",
"sinon-chai": "^2.7.0"
}
}