Skip to content

Commit

Permalink
updated dependencies; using local mocha-phantomjs
Browse files Browse the repository at this point in the history
  • Loading branch information
sakren committed Dec 12, 2013
1 parent 6fce116 commit cdfdb2f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,10 @@ $ npm test

## Changelog

* 1.8.0
+ Better tests (mocha does not need to be installed globally)
+ Updated dependencies

* 1.7.3
+ Bug with no-string arguments

Expand Down
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@
},
"main": "./lib/DI",
"dependencies": {
"easy-configuration": "~1.6.6"
"easy-configuration": "1.6.6"
},
"devDependencies": {
"chai": "~1.8.1",
"mocha": "~1.14.0"
"chai": "1.8.1",
"mocha": "1.15.1",
"mocha-phantomjs": "3.2.0",
"phantomjs": "1.9.2-5"
},
"scripts": {
"test": "cd ./test; echo \"Testing in node:\"; mocha ./node/index.js --reporter spec; cd browser; echo \"Testing in browser:\"; mocha-phantomjs ./index.html"
"test": "npm run test-node && npm run test-browser",
"test-build": "cd ./test/browser; simq build;",
"test-node": "mocha ./test/node/index.js --reporter spec",
"test-browser": "mocha-phantomjs ./test/browser/index.html"
}
}

0 comments on commit cdfdb2f

Please sign in to comment.