-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 985 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 985 Bytes
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
{
"name": "db2openapi",
"version": "1.0.0",
"description": "Generate an OpenAPI/Swagger specification from your SQL database",
"main": "index.js",
"scripts": {
"test": "test",
"build": "tsc"
},
"bin": {
"db2openapi": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zuplo-samples/db2openapi.git"
},
"keywords": [
"database",
"SQL",
"OpenAPI",
"Swagger"
],
"author": "Zuplo",
"license": "MIT",
"bugs": {
"url": "https://github.com/zuplo-samples/db2openapi/issues"
},
"homepage": "https://github.com/zuplo-samples/db2openapi#readme",
"devDependencies": {
"typescript": "^5.6.3"
},
"dependencies": {
"@types/node": "^22.9.1",
"commander": "^12.1.0",
"mariadb": "^3.4.0",
"mysql2": "^3.11.5",
"openapi-types": "^12.1.3",
"oracledb": "^6.7.0",
"pg": "^8.13.1",
"sequelize": "^6.37.5",
"sqlite3": "^5.1.7",
"tedious": "^18.6.1"
}
}