forked from ckyycc/hdb-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.25 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
{
"name": "hdb-pool",
"description": "HANA database connection pool for Node.js",
"version": "0.1.3",
"scripts": {
"start": "node ./bin/www",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"private": false,
"author": {
"name": "Kuang Cheng",
"email": "[email protected]"
},
"keywords": [
"sap",
"hana",
"hdb",
"in-memroy",
"connection",
"pool",
"pooling",
"node.js",
"node",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/ckyycc/hdb-pool"
},
"bugs": {
"url": "https://github.com/ckyycc/hdb-pool/issues"
},
"main": "index.js",
"files": [
"/lib",
"/test"
],
"peerDependencies": {
"@sap/hana-client": "^2.3.123"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.12.1",
"eslint-config-google": "^0.11.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"hdb": "^0.17.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"should": "^13.2.3",
"sinon": "^7.2.3"
},
"engines": {
"node": ">= 8"
},
"license": "MIT"
}