-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.58 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": "kong-config-manager",
"version": "1.7.1",
"description": "A CLI tool who can operate CURD on configs of live Kong instances",
"bin": {
"kcm": "./bin/kcm.js"
},
"scripts": {
"test": "unset http_proxy https_proxy && app=./test/kong-mock-server/index.js && cmd=./node_modules/pm2/bin/pm2 && INIT_DATA=true ${cmd} start ${app} -f && nyc ava && ${cmd} delete ${app}",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"ava": {
"files": [
"test/index.js"
],
"source": [
"lib/*.js",
"enums/*.js",
"bin/*.js"
],
"failFast": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maples7/kong-config-manager.git"
},
"preferGlobal": true,
"keywords": [
"Kong",
"config",
"CLI"
],
"author": "Maples7 <maples7.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Maples7/kong-config-manager/issues"
},
"homepage": "https://github.com/Maples7/kong-config-manager#readme",
"dependencies": {
"bluebird": "^3.5.5",
"chalk": "^2.4.2",
"commander": "^3.0.1",
"debug": "^4.1.1",
"filename-converter": "^1.0.0",
"fs-extra": "^8.1.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.15",
"readline-sync": "^1.4.10",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"semver": "^6.3.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"ava": "^4.3.3",
"coveralls": "^3.0.6",
"nyc": "^14.1.1",
"pm2": "^5.2.0"
},
"engines": {
"node": ">=4.4.0"
}
}