UNPKG

2.09 kBJSONView Raw
1{
2 "name": "gulp-cli",
3 "version": "1.4.0",
4 "description": "Command line interface for gulp",
5 "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
6 "contributors": [],
7 "homepage": "http://gulpjs.com",
8 "repository": "gulpjs/gulp-cli",
9 "license": "MIT",
10 "man": "gulp.1",
11 "engines": {
12 "node": ">= 0.10"
13 },
14 "main": "index.js",
15 "bin": {
16 "gulp": "bin/gulp.js"
17 },
18 "files": [
19 "index.js",
20 "lib",
21 "bin",
22 "completion",
23 "gulp.1"
24 ],
25 "scripts": {
26 "lint": "eslint . && jscs index.js bin/ lib/ test/",
27 "prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
28 "pretest": "npm run lint",
29 "test": "mocha --async-only --timeout 3000 test/lib test",
30 "cover": "nyc --reporter=lcov --reporter=text-summary npm test",
31 "coveralls": "nyc --reporter=text-lcov npm test | coveralls",
32 "changelog": "github-changes -o gulpjs -r gulp-cli -b master -f ./CHANGELOG.md --order-semver --use-commit-body"
33 },
34 "dependencies": {
35 "archy": "^1.0.0",
36 "chalk": "^1.1.0",
37 "copy-props": "^1.4.1",
38 "fancy-log": "^1.1.0",
39 "gulplog": "^1.0.0",
40 "interpret": "^1.0.0",
41 "liftoff": "^2.3.0",
42 "lodash.isfunction": "^3.0.8",
43 "lodash.isplainobject": "^4.0.4",
44 "lodash.sortby": "^4.5.0",
45 "matchdep": "^1.0.0",
46 "mute-stdout": "^1.0.0",
47 "pretty-hrtime": "^1.0.0",
48 "semver-greatest-satisfied-range": "^1.0.0",
49 "tildify": "^1.0.0",
50 "v8flags": "^2.0.9",
51 "wreck": "^6.3.0",
52 "yargs": "^3.28.0"
53 },
54 "devDependencies": {
55 "babel-preset-es2015": "^6.5.0",
56 "babel-register": "^6.5.1",
57 "coveralls": "^2.7.0",
58 "eslint": "^1.7.3",
59 "eslint-config-gulp": "^2.0.0",
60 "expect": "^1.20.2",
61 "fs-extra": "^0.26.1",
62 "github-changes": "^1.0.1",
63 "gulp": "gulpjs/gulp#4.0",
64 "gulp-test-tools": "^0.6.1",
65 "jscs": "^2.3.5",
66 "jscs-preset-gulp": "^1.0.0",
67 "marked-man": "^0.1.3",
68 "mocha": "^3.2.0",
69 "nyc": "^10.0.0"
70 },
71 "keywords": [
72 "build",
73 "stream",
74 "system",
75 "make",
76 "tool",
77 "asset",
78 "pipeline"
79 ]
80}