-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "gulp-chug",
"version": "0.5.1",
"description": "Run external gulpfiles as part of a gulp task inside another gulpfile",
"repository": "https://github.com/robatron/gulp-chug.git",
"main": "index.js",
"keywords": [
"gulpplugin",
"hub",
"nest",
"inception",
"cascade",
"domino",
"grunt-hub",
"gulp-hub"
],
"author": "Rob McGuire-Dale <[email protected]>",
"contributors": [
"Derek Peterson <[email protected]>",
"Harry Wolff <[email protected]>",
"Evgenus <[email protected]>",
"Mike O'Brien <[email protected]>",
"Phillip Green II <https://github.com/phillipgreenii>"
],
"license": "MIT",
"dependencies": {
"gulp-util": "^3.0.7",
"lodash": "^4.0.0",
"resolve": "^1.1.6",
"through2": "^2.0.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.7",
"mocha": "^2.3.4",
"proxyquire": "^1.7.3",
"should": "^8.1.1",
"sinon": "^1.17.2"
},
"scripts": {
"test": "gulp --gulpfile test/gulp-chug-integrate.js && gulp test",
"publish-patch": "npm version patch && git push origin master --tags && npm publish"
}
}