-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #4 - create is always in PERSISTENT mode
- Loading branch information
Showing
7 changed files
with
58 additions
and
69 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
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
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
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
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
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
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": "node-zookeeper-client", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A pure Javascript ZooKeeper client for Node.js.", | ||
"author": "Alex Guan <[email protected]>", | ||
"main": "index.js", | ||
|
@@ -15,6 +15,7 @@ | |
"url": "https://github.com/alexguan/node-zookeeper-client" | ||
}, | ||
"scripts": { | ||
"pretest": "jslint --node --sloppy index.js lib/*.js lib/jute/*.js", | ||
"test": "mocha --recursive --reporter spec test/*", | ||
"coverage": "istanbul cover _mocha --recursive test/*" | ||
}, | ||
|
@@ -34,6 +35,7 @@ | |
"devDependencies": { | ||
"mocha": "~1.9.0", | ||
"chai": "~1.5.0", | ||
"istanbul": "~0.1.34" | ||
"istanbul": "~0.1.34", | ||
"jslint": "~0.1.9" | ||
} | ||
} |