-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 911 Bytes
/
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
{
"name": "sqema",
"version": "1.0.2",
"description": "Convert relational databases to json schema format",
"keywords": [ "json-schema", "sql", "postgresql", "schema", "validation" ],
"author": {
"email": "[email protected]",
"name": "AzizAhmad Noorzaie"
},
"repository": {
"type": "git",
"url": "https://github.com/noorzaie/sqema"
},
"main": "index.js",
"scripts": {
"test": "ts-node test.ts",
"build": "tsc"
},
"license": "MIT",
"dependencies": {
"commander": "^8.2.0",
"pg-structure": "^7.12.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/json-schema": "^7.0.9",
"@types/node": "^16.10.3",
"@types/prompts": "^2.0.14",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"bin": "cli/cli.js",
"types": "index.d.ts"
}