Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes <johannes.ewald@roomieplanet.de>2012-06-18 20:50:49 +0400
committerJohannes <johannes.ewald@roomieplanet.de>2012-06-18 20:50:49 +0400
commita62821506aa5ee528c8d5271a348944020be32b8 (patch)
tree922d107c96425ec3937f818b48c5d3ab102a3bf1
parent8c0c42ea540df14a5bf65f825a0f2c04861b43cc (diff)
added backwards compatibility to node version
-rw-r--r--package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index 53093ab..57130af 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name" : "rewire",
- "version" : "0.2.1",
+ "version" : "0.2.2",
"description" : "Dependency injection for node.js applications",
"keywords" : [
"dependency",
@@ -27,13 +27,13 @@
"url": "git://github.com/jhnns/rewire.git"
},
"engines" : {
- "node" : "0.8.x"
+ "node" : "<=0.8.x"
},
"devDependencies": {
"mocha": "1.1.x",
"expect.js": "0.1.x"
},
"scripts" : {
- "test" : "make test"
+ "test" : "mocha"
}
}