-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "loadbalance-client",
"version": "0.2.2",
"description": "An http client by request with loadbalance.",
"main": "build/LoadBalanceClient.js",
"scripts": {
"build": "babel src -d build",
"test": "NODE_ENV=development nyc ava ./test",
"report": "nyc report --reporter=html"
},
"ava": {
"require": [
"babel-register"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/miaowing/loadbalance-client.git"
},
"keywords": [
"loadbalance",
"http-client"
],
"author": "miaowing <i@zfeng.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miaowing/loadbalance-client/issues"
},
"homepage": "https://github.com/miaowing/loadbalance-client#readme",
"dependencies": {
"blueimp-md5": "^2.7.0",
"loadbalance": "git+https://github.com/node-cloud/node-loadbalance.git",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"uri-params": "^0.1.2"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"consul": "^0.28.0",
"nyc": "^10.2.0"
}
}