Skip to content

Commit 3f8816e

Browse files
committed
update deps, reformat package.json file
1 parent 652867c commit 3f8816e

File tree

2 files changed

+45
-38
lines changed

2 files changed

+45
-38
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ npm-debug.log
55
*.tgz
66
deps/zookeeper*
77
.DS_Store
8+
package-lock.json

package.json

+44-38
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,47 @@
11
{
2-
"name": "zookeeper"
3-
,"description": "apache zookeeper client (zookeeper async API >= 3.4.0)"
4-
,"version": "3.4.12-1"
5-
,"author": "Yuri Finkelstein <[email protected]>"
6-
,"contributors": [
7-
"Yuri Finkelstein <[email protected]>"
8-
,"Woody Anderson <[email protected]>"
9-
,"Mark Cavage <[email protected]>"
10-
,"Dave Dopson <[email protected]>"
11-
,"David Trejo <[email protected]>"
12-
,"Pooya Karimian <[email protected]>"
13-
,"Jakub Lekstan <[email protected]>"
14-
,"Matt Lavin <[email protected]>"
15-
,"Roy Cheng <[email protected]>"
16-
]
17-
,"repository": {
18-
"type": "git"
19-
,"url": "https://github.com/yfinkelstein/node-zookeeper"
2+
"name": "zookeeper",
3+
"description": "apache zookeeper client (zookeeper async API >= 3.4.0)",
4+
"version": "3.4.12-1",
5+
"author": "Yuri Finkelstein <[email protected]>",
6+
"contributors": [
7+
"Yuri Finkelstein <[email protected]>",
8+
"Woody Anderson <[email protected]>",
9+
"Mark Cavage <[email protected]>",
10+
"Dave Dopson <[email protected]>",
11+
"David Trejo <[email protected]>",
12+
"Pooya Karimian <[email protected]>",
13+
"Jakub Lekstan <[email protected]>",
14+
"Matt Lavin <[email protected]>",
15+
"Roy Cheng <[email protected]>"
16+
],
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/yfinkelstein/node-zookeeper"
20+
},
21+
"keywords": [
22+
"apache",
23+
"zookeeper",
24+
"client"
25+
],
26+
"dependencies": {
27+
"async": "2.6.x",
28+
"decompress": "4.2.x",
29+
"decompress-targz": "4.1.x",
30+
"lodash": "4.x",
31+
"nan": "2.x",
32+
"shelljs": "0.8.x"
33+
},
34+
"devDependencies": {
35+
"log4js": "4.x",
36+
"webworker": "0.x"
37+
},
38+
"main": "lib/index",
39+
"scripts": {
40+
"build": "node-gyp configure build",
41+
"install": "node ./scripts/prepublish.js && npm run build",
42+
"test": "pushd test; ./test; popd"
43+
},
44+
"engines": {
45+
"node": ">=0.10"
2046
}
21-
,"keywords": ["apache", "zookeeper", "client"]
22-
,"dependencies": {
23-
"async": "~2.6.1"
24-
,"decompress": "4.2.x"
25-
,"decompress-targz": "4.1.x"
26-
,"lodash": "~4.17.x"
27-
,"nan": "~2.11.0"
28-
,"shelljs": "0.8.x"
29-
}
30-
,"devDependencies": {
31-
"log4js": "~3.0.5"
32-
,"webworker": ">=0.8.4"
33-
}
34-
,"main": "lib/index"
35-
,"scripts" : {
36-
"build" : "node-gyp configure build"
37-
,"install": "node ./scripts/prepublish.js && npm run build"
38-
,"test" : "pushd test; ./test; popd"
39-
}
40-
,"engines": { "node": ">=0.10" }
4147
}

0 commit comments

Comments
 (0)