-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "konga-cli",
"version": "0.0.3",
"description": "Command-line client for the Kong admin (http://getkong.org)",
"main": "index.js",
"scripts": {
"test": "istanbul cover --print detail _mocha -- -R spec test",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Floby/konga-cli.git"
},
"bin": {
"konga": "bin/konga"
},
"keywords": [
"kong",
"getkong",
"api",
"admin",
"cli",
"OAuth2",
"ansible",
"command-line",
"command",
"line",
"cli"
],
"author": "Florent Jaby <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Floby/konga-cli/issues"
},
"homepage": "https://github.com/Floby/konga-cli#readme",
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"mocha": "^2.3.4",
"nock": "^3.2.0",
"sinon": "^1.17.2"
},
"dependencies": {
"commander": "^2.9.0",
"printf": "^0.2.3",
"supertest": "^1.1.0",
"url-assembler": "^1.2.4"
}
}