-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "traffic-splitter",
"description": "Splits incoming traffic to upstream backends",
"author": "Mindera",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Mindera/traffic-splitter.git"
},
"homepage": "http://trafficsplitter.io",
"version": "1.2.9",
"main": "index.js",
"bin": {
"traffic-splitter": "./bin/traffic-splitter.js"
},
"scripts": {
"pretest": "standard --verbose",
"test": "mocha --recursive",
"code-coverage": "nyc npm t",
"code-format": "standard --fix"
},
"dependencies": {
"agentkeepalive": "^3.1.0",
"bunyan": "^1.8.8",
"chalk": "^1.1.3",
"clone": "^2.1.1",
"commander": "^2.10.0",
"geoip-lite": "^1.3.7",
"mime-types": "^2.1.17",
"mobile-detect": "^1.3.6",
"restify": "^4.3.0",
"restify-cookies": "^0.2.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^6.1.4",
"standard": "^9.0.2"
},
"standard": {
"ignore": [
"/test/**"
]
},
"bugs": {
"url": "https://github.com/Mindera/traffic-splitter/issues"
},
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"keywords": [
"http",
"traffic",
"trafficsplitter",
"traffic-splitter",
"traffic-splitting",
"api-gateway"
]
}