Skip to content

Commit

Permalink
Bumped version to 1.1.0 in preparation for release.
Browse files Browse the repository at this point in the history
Added to the contributors list.
Added an `npm run test-suite` target for just running the tests,
no coverage dance.
  • Loading branch information
ceejbot committed Dec 4, 2013
1 parent 9b57bdf commit 1cec154
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,13 @@ Why yaml not json? Because when I originally wrote this, it was in support of a

## Contributors

Many thanks to @AVVS, @crackcomm, and @zr40 for their pull requests.
@AVVS
@crackcomm
@zr40
Jon Keating
Jevgenij Tsoi

Many thanks!

## TODO

Expand Down
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" :
{
Expand All @@ -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",
Expand Down

0 comments on commit 1cec154

Please sign in to comment.