forked from gulpjs/gulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.38 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
57
58
59
60
61
62
63
64
{
"name": "gulp",
"description": "The streaming build system",
"version": "3.6.2",
"homepage": "http://gulpjs.com",
"repository": "gulpjs/gulp",
"author": "Fractal <[email protected]> (http://wearefractal.com/)",
"tags": [
"build",
"stream",
"system",
"make",
"tool",
"asset",
"pipeline"
],
"files": [
"index.js",
"lib",
"bin",
"completion"
],
"bin": {
"gulp": "./bin/gulp.js"
},
"dependencies": {
"archy": "^0.0.2",
"chalk": "^0.4.0",
"deprecated": "^0.0.1",
"gulp-util": "^2.2.0",
"liftoff": "^0.9.3",
"orchestrator": "^0.3.0",
"pretty-hrtime": "^0.2.0",
"semver": "^2.2.1",
"tildify": "^0.2.0",
"vinyl-fs": "^0.1.3"
},
"devDependencies": {
"mocha": "^1.17.0",
"mocha-lcov-reporter": "^0.0.1",
"coveralls": "^2.7.0",
"istanbul": "^0.2.3",
"should": "^3.1.0",
"rimraf": "^2.2.5",
"q": "^1.0.0",
"jshint": "^2.5.0",
"graceful-fs": "^2.0.1",
"mkdirp": "^0.3.5"
},
"scripts": {
"test": "jshint && mocha --reporter spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"engineStrict": true,
"engines": {
"node": ">= 0.9"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/gulpjs/gulp/master/LICENSE"
}
]
}