1
0
mirror of https://github.com/seejohnrun/haste-server.git synced 2026-02-10 16:01:32 +00:00

Remove hashlib dependency and switch to mocha for testing

This commit is contained in:
John Crepezzi
2012-01-13 11:16:42 -05:00
parent b251978422
commit 6e4c087319
7 changed files with 42 additions and 65 deletions
+3 -3
View File
@@ -19,13 +19,13 @@
"dependencies": {
"winston": "*",
"hashlib": "*",
"connect": "*",
"uglify-js": "*"
},
"devDependencies": {
"jasmine-node": "*"
"mocha": "*",
"should": "*"
},
"bundledDependencies": [],
@@ -46,7 +46,7 @@
"scripts": {
"start": "node server.js",
"test": "jasmine-node spec"
"test": "mocha -r should spec/*"
}
}