-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
68 lines (68 loc) · 1.61 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
{
"name": "pg-to-ts",
"version": "4.1.1",
"description": "Generate TypeScript-friendly interfaces and constants from (postgres) SQL database schema",
"keywords": [
"postgres",
"schema",
"typescript",
"sql"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=8.15.1"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"build": "tsc",
"format": "prettier --write .",
"test": "jest",
"clean": "rm -rf dist",
"coverage": "jest --coverage"
},
"bin": {
"pg-to-ts": "dist/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/danvk/pg-to-ts.git"
},
"bugs": {
"url": "https://github.com/danvk/pg-to-ts/issues"
},
"author": "Dan Vanderkam <[email protected]>",
"contributors": [
"Mengxuan Xia <[email protected]>",
"Arnaud Benhamdine <[email protected]>",
"zigomir <[email protected]>",
"Mark Crisp <[email protected]>",
"George MacKerron <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.149",
"@types/node": "14",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"lodash": "^4.17.21",
"pg-promise": "^10.11.1",
"typescript-formatter": "^7.0.1",
"yargs": "^17.3.1"
},
"peerDependencies": {
"typescript": ">=4.1"
}
}