forked from adriantanasa/db2-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "db2-rest-client",
"version": "1.1.2",
"description": "Node.js Client for DB2 on Cloud (REST api) - administration, monitoring, exploring, loading data.",
"main": "index.js",
"scripts": {
"test": "mocha test/*Spec.js --recursive",
"coverage": "nyc npm test",
"integration": "mocha test/integration --recursive --timeout 50000",
"lint": "eslint index.js lib",
"db2-rest-client": "node ./bin/db2-rest-client.js"
},
"bin": {
"db2-rest-client": "./bin/db2-rest-client.js"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adriantanasa/db2-rest-client.git"
},
"author": "Adrian Tanasa <adrian_tanasa@yahoo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriantanasa/db2-rest-client/issues"
},
"homepage": "https://github.com/adriantanasa/db2-rest-client#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-plugin-node": "^7.0.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"pre-commit": "^1.2.2",
"sinon": "^6.1.5"
},
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.10",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"minimist": "^1.2.0",
"csvtojson": "^2.0.8"
},
"keywords": [
"db2",
"db2 rest client",
"dashDb client",
"db2 client"
],
"engines": {
"node": ">=8.11.0"
}
}