-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
144 lines (144 loc) · 3.64 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "hana-cli",
"version": "3.202405.1",
"description": "HANA Developer Command Line Interface",
"main": "index.js",
"bin": {
"hana-cli": "./bin/cli.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "mocha --config=tests/.mocharc.json './tests/*.Test.js'",
"changelog": "node CHANGELOG",
"types": "tsc --declaration --allowJs --emitDeclarationOnly --outDir types --skipLibCheck",
"postinstall": "npm link @sap/cds-dk --local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SAP-samples/hana-developer-cli-tool-example.git"
},
"keywords": [
"hana",
"sap",
"database",
"cli"
],
"types": "types/index.d.ts",
"dependencies": {
"@cap-js-community/odata-v2-adapter": "^1.12.9",
"@cap-js/graphql": "0.10.1",
"@cap-js/hana": "^0.4.0",
"@cap-js/postgres": "^1.8.0",
"@cap-js/sqlite": "^1.7.1",
"@cap-js/telemetry": "^0.1.0",
"@json2csv/node": "7.0.6",
"@sap-cloud-sdk/resilience": "^3.15.0",
"@sap/cds": "^7.9.1",
"@sap/cds-common-content": "^1.4.0",
"@sap/cds-fiori": "^1.2.3",
"@sap/cds-hana": "^2.0.0",
"@sap/textbundle": "^5.1",
"@sap/xsenv": "^5.1.0",
"body-parser": "^1.20.2",
"cds-swagger-ui-express": "^0.8.0",
"chalk": "^5.3.0",
"check-node-version": "^4.2.1",
"cli-cursor": "^4.0.0",
"cli-highlight": "^2.1.11",
"console.table": "~0.10",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"easy-table": "1.2.0",
"express": "^4.19.2",
"figures": "^6.1.0",
"glob": "10.3.15",
"hdb": "0.19.8",
"inquirer": "9.2.21",
"inquirer-tree-prompt": "^1.1.2",
"js-convert-case": "^4.2.0",
"json-to-pretty-yaml": "^1.2.2",
"json-to-table": "^4.2.1",
"latest-version": "^9.0",
"lodash": "^4.17.21",
"marked": "^12.0.2",
"marked-terminal": "^7.0",
"node-zip": "^1.1.1",
"odata2openapi": "^1.3.2",
"open": "^10.1.0",
"ora": "^8.0.1",
"prompt": "^1.3.0",
"properties-to-json": "^0.2.1",
"rxjs": "^7.8.1",
"sap-hdb-promisfied": "2.202405.1",
"showdown": "^2.1.0",
"swagger-ui-express": "^5.0.0",
"terminal-kit": "^3.1.1",
"terminaltools": "3.0.1-beta",
"upath": "^2.0.1",
"update-notifier": "^7.0.0",
"uuid": "^9.0.1",
"ws": "^8.17.0",
"yargonaut": "1.1.4",
"yargs": "^17.7.2"
},
"peerDependencies": {
"@sap/cds-dk": ">=7.9.2"
},
"author": "SAP",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/SAP-samples/hana-developer-cli-tool-example/issues"
},
"homepage": "https://github.com/SAP-samples/hana-developer-cli-tool-example#readme",
"devDependencies": {
"@sap/eslint-plugin-cds": "^3.0.3",
"@types/node": "^20.12.12",
"@types/showdown": "^2.0.4",
"@types/yargs": "^17.0.31",
"eslint": "^9.2.0",
"mochawesome": "^7.1.3",
"sinon": "^18.0.0",
"stringify-changelog": "^0.2.1"
},
"cds": {
"preview": {
"ui5": {
"version": "1.124.0"
}
},
"hana": {
"journal": {
"enable-drop": false,
"change-mode": "alter"
},
"deploy-format": "hdbtable"
},
"requires": {
"middlewares": true,
"db": {
"kind": "hana",
"impl": "@cap-js/hana"
}
},
"features": {
"preserve_computed": true,
"kibana_formatter": true,
"audit_personal_data": true,
"optimized_search": true,
"rest_new_adapter": true,
"odata_new_parser": true
},
"protocols": {
"graphql": {
"path": "/graphql",
"impl": "@cap-js/graphql"
}
},
"log": {
"service": true
}
}
}