Skip to content

Commit

Permalink
Move mocha to devDependencies. Lock down versions using ~.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlai committed Nov 3, 2014
1 parent c0efc00 commit 599712c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
6 changes: 6 additions & 0 deletions History.md
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.
23 changes: 11 additions & 12 deletions package.json
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": {
Expand All @@ -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"
}
}

0 comments on commit 599712c

Please sign in to comment.