-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "pg-to-dbml",
"version": "1.0.0",
"engines": {
"node": "16.10.0"
},
"description": "CLI tool to scan your postgres database, and output DBML.",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"test": "jest"
},
"keywords": [
"dbml",
"DBML",
"postgres",
"pg"
],
"author": "Jeff Bumgardner <[email protected]>",
"license": "ISC",
"dependencies": {
"p-map": "^4.0.0",
"pg": "^8.6.0",
"typescript": "^4.1.3",
"yargs": "^15.1.0"
},
"bin": {
"pg-to-dbml": "index.js"
},
"devDependencies": {
"@polarislabs/eslint-config-polaris": "1.2.6",
"@types/jest": "^26.0.19",
"@types/node": "16.10.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-typescript-sort-keys": "^1.5.0",
"jest": "^26.6.3",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papandreou/pg-to-dbml.git"
},
"bugs": {
"url": "https://github.com/papandreou/pg-to-dbml/issues"
},
"homepage": "https://github.com/papandreou/pg-to-dbml#readme"
}