-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move mocha to devDependencies. Lock down versions using ~.
- Loading branch information
Showing
2 changed files
with
17 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
1.0.1 / 2014-11-03 | ||
================== | ||
|
||
Fix locking down dependencies. Avoid using bunyan-1.2 since dtrace-provider | ||
has problems on OSX. Move mocha to devDependencies. |
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,6 +1,6 @@ | ||
{ | ||
"name": "koa-bunyan-logger", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Koa middleware for logging requests using bunyan", | ||
"main": "index.js", | ||
"engines": { | ||
|
@@ -27,18 +27,17 @@ | |
"author": "Pebble Technology <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"bunyan": "^1.1.3", | ||
"mocha": "^2.0.1", | ||
"node-uuid": "^1.4.1", | ||
"on-finished": "^2.1.1" | ||
"bunyan": "~1.1.3", | ||
"node-uuid": "~1.4.1", | ||
"on-finished": "~2.1.1" | ||
}, | ||
"devDependencies": { | ||
"co-mocha": "^1.0.3", | ||
"co-supertest": "0.0.7", | ||
"istanbul-harmony": "^0.3.0", | ||
"jshint": "^2.5.8", | ||
"koa": "^0.13.0", | ||
"mocha": "^1.0", | ||
"supertest": "^0.14.0" | ||
"co-mocha": "~1.0.3", | ||
"co-supertest": "~0.0.7", | ||
"istanbul-harmony": "~0.3.0", | ||
"jshint": "~2.5.8", | ||
"koa": "~0.13.0", | ||
"mocha": "~2.0.1", | ||
"supertest": "~0.14.0" | ||
} | ||
} |