-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumped version to 1.1.0 in preparation for release.
Added to the contributors list. Added an `npm run test-suite` target for just running the tests, no coverage dance.
- Loading branch information
Showing
2 changed files
with
14 additions
and
6 deletions.
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
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 |
---|---|---|
|
@@ -2,11 +2,12 @@ | |
"name" : "fivebeans", | ||
"description" : "beanstalkd client & worker daemon for node.", | ||
"keywords" : ["beanstalkd", "worker", "jobs", "work-queue" ], | ||
"version" : "1.0.4", | ||
"version" : "1.1.0", | ||
"author" : "C J Silverio <[email protected]>", | ||
"contributors": | ||
[ | ||
"Jon Keating <[email protected]>" | ||
"Jon Keating <[email protected]>", | ||
"Jevgenij Tsoi <[email protected]>" | ||
], | ||
"dependencies" : | ||
{ | ||
|
@@ -28,9 +29,10 @@ | |
"bin" : { "beanworker": "./bin/beanworker" }, | ||
"scripts" : | ||
{ | ||
"test": "./node_modules/.bin/mocha -s 2000 -R spec test/test*.js && ./node_modules/.bin/mocha --require blanket -R travis-cov test/test*.js", | ||
"test-cov": "./node_modules/.bin/mocha --require blanket -R travis-cov test/test*.js", | ||
"coverage": "./node_modules/.bin/mocha --require blanket -R html-cov test/test*.js > test/coverage.html", | ||
"test-suite": "./node_modules/.bin/mocha -s 2000 -t 5000 -R spec test/test*.js", | ||
"test": "npm run test-suite && npm run test-cov", | ||
"test-cov": "./node_modules/.bin/mocha --require blanket -R travis-cov test/test*.js", | ||
"coverage": "./node_modules/.bin/mocha --require blanket -R html-cov test/test*.js > test/coverage.html", | ||
"blanket": | ||
{ | ||
"pattern": "//^((?!\/node_modules|test|examples\/).)*$/ig", | ||
|