-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "fastify-hana",
"version": "0.2.8",
"description": "Fastify Sap Hana connection plugin",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Yoav gal",
"license": "MIT",
"homepage": "https://github.com/yoav0gal/fastify-hana",
"bugs": {
"url": "https://github.com/yoav0gal/fastify-hana/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yoav0gal/fastify-hana"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npx tap",
"lint": "standard && npm run lint:typescript",
"lint:typescript": "ts-standard",
"test:typescript": "tsd",
"build": "tsc",
"prepublish": "npm run build",
"publish": "npm publish --access public"
},
"keywords": [
"fastify",
"sap",
"hana",
"SAP HANA",
"plugin",
"database",
"connectivity",
"query",
"transaction",
"client"
],
"dependencies": {
"@sap/hana-client": "^2.16.26",
"fastify-plugin": "^4.5.0"
},
"devDependencies": {
"@ibsolution/types-hana-client": "^2.8.20-r1",
"@types/node": "^18.16.16",
"@types/tap": "^15.0.8",
"fastify": "^4.17.0",
"fastify-tsconfig": "^1.0.1",
"proxyquire": "^2.1.3",
"standard": "^17.0.0",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.1",
"tsd": "^0.16.0",
"typescript": "^5.3.3"
},
"tsd": {
"directory": "test"
}
}