forked from observing/haproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "haproxy",
"version": "0.3.0",
"description": "HAProxy management and orchestration module",
"main": "index.js",
"dependencies": {
"dsv": "0.0.x",
"which": "~1.2.12",
"mkdirp": "0.5.x"
},
"devDependencies": {
"istanbul": "~0.4.5",
"pre-commit": "~1.2.0",
"mocha": "~3.1.2",
"sinon": "~1.17.6",
"sinon-chai": "~2.8.0",
"chai": "~3.5.0",
"request": "~2.79.0"
},
"scripts": {
"test": "mocha --ui bdd --reporter spec ./test/*.test.js",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- ./test/*.test.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- ./test/*.test.js",
"sync": "VERSION=1.5 node ./test/config.sync.js"
},
"repository": {
"type": "git",
"url": "[email protected]:observing/haproxy.git"
},
"keywords": [
"HAProxy",
"proxy",
"load balancer",
"orchestration",
"cloud",
"reverse",
"load",
"balancer"
],
"author": "Arnout Kazemier <[email protected]>",
"license": "MIT"
}