forked from deepti-bansal/gulp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.85 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
75
76
77
{
"name": "gulp-cli",
"version": "2.3.0",
"description": "Command line interface for gulp",
"author": "Gulp Team <[email protected]> (https://gulpjs.com/)",
"contributors": [],
"homepage": "https://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": {
"lint": "eslint .",
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
"pretest": "npm run lint",
"test": "mocha --async-only --timeout 5000 test/lib test",
"cover": "nyc --reporter=lcov --reporter=text-summary npm test",
"coveralls": "nyc --reporter=text-lcov npm test | coveralls"
},
"dependencies": {
"ansi-colors": "^1.0.1",
"archy": "^1.0.0",
"array-sort": "^1.0.0",
"concat-stream": "^1.6.0",
"color-support": "^1.1.3",
"copy-props": "^2.0.1",
"fancy-log": "^1.3.2",
"gulplog": "^1.0.0",
"interpret": "^1.4.0",
"isobject": "^3.0.1",
"liftoff": "^3.1.0",
"matchdep": "^2.0.0",
"mute-stdout": "^1.0.0",
"pretty-hrtime": "^1.0.0",
"replace-homedir": "^1.0.0",
"semver-greatest-satisfied-range": "^1.1.0",
"v8flags": "^3.2.0",
"yargs": "https://github.com/habilelabs/yargs.git"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.1",
"coveralls": "^3.0.3",
"eslint": "^2.13.1",
"eslint-config-gulp": "^3.0.1",
"expect": "^1.20.2",
"gulp": "^4.0.0",
"gulp-test-tools": "^0.6.1",
"marked-man": "^0.7.0",
"mocha": "^3.2.0",
"nyc": "^13.3.0",
"rimraf": "^2.6.1",
"semver": "^5.7.1"
},
"keywords": [
"build",
"stream",
"system",
"make",
"tool",
"asset",
"pipeline"
]
}