-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.04 KB
/
package.json
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
{
"name": "superagent-load-balancer",
"version": "2.0.3",
"description": "load balancer plugin for superagent",
"scripts": {
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "node ./node_modules/.bin/eslint ./lib/*.js && node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./test/*.js --"
},
"keywords": [
"superagent",
"plugin",
"load balance",
"load balancer"
],
"main": "lib/balancer",
"license": "MIT",
"author": "Tree Xie <vicansocanbico@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/vicanso/superagent-load-balancer.git"
},
"readmeFilename": "README.md",
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"superagent": "^3.3.1"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"crc": "^3.4.4"
}
}