forked from gulpjs/gulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "gulp",
"description": "The streaming build system",
"version": "3.5.4",
"homepage": "http://github.com/wearefractal/gulp",
"repository": "git://github.com/wearefractal/gulp.git",
"author": "Fractal <[email protected]> (http://wearefractal.com/)",
"main": "./index.js",
"tags": [
"build",
"stream",
"system"
],
"files": [
"index.js",
"lib",
"bin"
],
"bin": {
"gulp": "./bin/gulp.js"
},
"dependencies": {
"gulp-util": "~2.2.0",
"orchestrator": "~0.3.0",
"pretty-hrtime": "~0.2.0",
"vinyl-fs": "~0.0.2",
"semver": "~2.2.1",
"archy": "~0.0.2",
"deprecated": "~0.0.1",
"liftoff": "~0.8.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.4.1",
"graceful-fs": "~2.0.1",
"gulp-jshint": "~1.4.0",
"mkdirp": "~0.3.5"
},
"scripts": {
"test": "node gulpfile.js && 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": "http://github.com/wearefractal/gulp/raw/master/LICENSE"
}
]
}