-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
{
"name": "pg-tables-to-jsonschema",
"version": "1.1.3",
"description": "A command-line utility and module to turn postgres tables into JSON Schemas",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"pgtables2jsonschema": "./lib/cli.js"
},
"scripts": {
"build:compile": "tsc -b --verbose",
"build": "npm-run-all build:compile",
"clean": "rimraf lib",
"lint": "eslint .",
"prepublish": "npm-run-all build:compile",
"rebuild": "npm-run-all clean build:compile",
"test:jest": "jest --silent --coverage test/",
"test": "npm-run-all build test:jest",
"watch": "tsc -b src/ --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/SpringTree/pg-tables-to-jsonschema.git"
},
"keywords": [
"json-schema",
"postgresql",
"converter",
"command-line"
],
"author": {
"name": "Mark Doeswijk",
"email": "[email protected]",
"url": "https://github.com/Qwerios"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/SpringTree/pg-tables-to-jsonschema/issues"
},
"homepage": "https://github.com/SpringTree/pg-tables-to-jsonschema#readme",
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/jsonfile": "^6.1.4",
"@types/lodash": "^4.14.200",
"@types/mkdirp": "^2.0.0",
"@types/pg": "^8.10.7",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"commander": "^11.1.0",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"pg-structure": "^7.15.3",
"prompts": "^2.4.2"
}
}