forked from gulpjs/gulp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Contra
committed
Jun 24, 2014
1 parent
9a04cdd
commit e96a804
Showing
3 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ coverage | |
sandbox | ||
test/out-fixtures/* | ||
test/watch-*.txt | ||
gulp.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "gulp", | ||
"description": "The streaming build system", | ||
"version": "3.8.1", | ||
"version": "3.8.2", | ||
"homepage": "http://gulpjs.com", | ||
"repository": "gulpjs/gulp", | ||
"author": "Fractal <[email protected]> (http://wearefractal.com/)", | ||
|
@@ -23,6 +23,7 @@ | |
"bin": { | ||
"gulp": "./bin/gulp.js" | ||
}, | ||
"man": "gulp.1", | ||
"dependencies": { | ||
"archy": "^0.0.2", | ||
"chalk": "^0.4.0", | ||
|
@@ -43,6 +44,7 @@ | |
"istanbul": "^0.2.3", | ||
"jshint": "^2.5.0", | ||
"jshint-stylish": "^0.2.0", | ||
"marked-man": "^0.1.3", | ||
"mkdirp": "^0.5.0", | ||
"mocha": "^1.17.0", | ||
"mocha-lcov-reporter": "^0.0.1", | ||
|
@@ -51,6 +53,7 @@ | |
"should": "^4.0.0" | ||
}, | ||
"scripts": { | ||
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1", | ||
"lint": "jshint lib bin index.js --reporter node_modules/jshint-stylish/stylish.js --exclude node_modules", | ||
"test": "npm run-script lint && mocha --reporter spec", | ||
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage" | ||
|