-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.09 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": "kong-admin-node-client",
"version": "1.0.20",
"description": "Kong admin API client in node",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/.bin/_mocha --recursive -- ./test/*-test.js",
"test-travis": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --recursive --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ugolas/kong-admin-node-client.git"
},
"keywords": [
"kong",
"admin",
"api",
"node"
],
"author": "Alex Ugol <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ugolas/kong-admin-node-client/issues"
},
"homepage": "https://github.com/ugolas/kong-admin-node-client#readme",
"dependencies": {
"bunyan": "^1.8.12",
"lodash": "^4.17.4",
"pkginfo": "^0.4.1",
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.1",
"should": "^13.1.3",
"sinon": "^4.1.3"
}
}