-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "zoocreeper",
"version": "0.0.0",
"description": "A Zookeeper Client",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack -d",
"build:prod": "webpack --config webpack.config.production.js",
"clean": "rm -r dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/falquan/zoocreeper.git"
},
"author": "",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/falquan/zoocreeper/issues"
},
"homepage": "https://github.com/falquan/zoocreeper",
"dependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-loader": "^5.3.1",
"node-libs-browser": "^0.5.2",
"node-zookeeper-client": "^0.2.2",
"webpack": "^1.10.1"
},
"devDependencies": {
"jest-cli": "^0.4.15"
}
}