forked from gulpjs/gulp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.76 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
65
66
67
68
69
70
71
72
73
74
{
"name": "gulp-cli",
"version": "1.2.1",
"description": "Command line interface for gulp",
"author": "Gulp Team <[email protected]> (http://gulpjs.com/)",
"contributors": [],
"homepage": "http://gulpjs.com",
"repository": "gulpjs/gulp-cli",
"license": "MIT",
"man": "gulp.1",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"bin": {
"gulp": "bin/gulp.js"
},
"files": [
"index.js",
"lib",
"bin",
"completion",
"gulp.1"
],
"scripts": {
"coveralls": "lab -r lcov | coveralls",
"lint": "eslint . && jscs index.js bin/ lib/ test/",
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
"pretest": "npm run lint",
"test": "lab test/*.js -cv",
"changelog": "github-changes -o gulpjs -r gulp-cli -b master -f ./CHANGELOG.md --order-semver --use-commit-body"
},
"dependencies": {
"archy": "^1.0.0",
"chalk": "^1.1.0",
"fancy-log": "^1.1.0",
"gulplog": "^1.0.0",
"interpret": "^1.0.0",
"liftoff": "^2.1.0",
"lodash.sortby": "^4.0.1",
"matchdep": "^1.0.0",
"mute-stdout": "^1.0.0",
"pretty-hrtime": "^1.0.0",
"semver-greatest-satisfied-range": "^1.0.0",
"tildify": "^1.0.0",
"v8flags": "^2.0.9",
"wreck": "^6.3.0",
"yargs": "^3.28.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.1",
"code": "^1.2.1",
"coveralls": "^2.7.0",
"eslint": "^1.7.3",
"eslint-config-gulp": "^2.0.0",
"fs-extra": "^0.26.1",
"github-changes": "^1.0.1",
"gulp": "gulpjs/gulp#4.0",
"jscs": "^2.3.5",
"jscs-preset-gulp": "^1.0.0",
"lab": "^6.2.0",
"marked-man": "^0.1.3"
},
"keywords": [
"build",
"stream",
"system",
"make",
"tool",
"asset",
"pipeline"
]
}