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.
binFile to .js and fix orchestrator default issue
- Loading branch information
Contra
committed
Oct 31, 2013
1 parent
8005882
commit dbe7e47
Showing
3 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
File renamed without changes.
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,15 +1,15 @@ | ||
{ | ||
"name":"gulp", | ||
"description":"The streaming build system", | ||
"version":"2.0.1", | ||
"version":"2.1.0", | ||
"homepage":"http://github.com/wearefractal/gulp", | ||
"repository":"git://github.com/wearefractal/gulp.git", | ||
"author":"Fractal <[email protected]> (http://wearefractal.com/)", | ||
"main":"./index.js", | ||
"preferGlobal":true, | ||
|
||
"bin":{ | ||
"gulp":"./bin/gulp" | ||
"gulp":"./bin/gulp.js" | ||
}, | ||
"dependencies":{ | ||
"event-stream":"3.0.16", | ||
|
@@ -26,10 +26,11 @@ | |
"mocha":"*", | ||
"should":"*", | ||
"rimraf":"*", | ||
"q": "*" | ||
"q": "*", | ||
"jshint": "*" | ||
}, | ||
"scripts":{ | ||
"test":"mocha" | ||
"test":"mocha && jshint" | ||
}, | ||
"engines":{ | ||
"node":">= 0.8" | ||
|