-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
107 lines (107 loc) · 3.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "pg-structure",
"version": "0.0.0",
"description": "Reverse engineer PostgreSQL database as a detailed JS Object.",
"author": {
"name": "Özüm Eldoğan",
"email": "[email protected]",
"url": "https://www.ozum.net/"
},
"keywords": [
"postgresql",
"reverse engineer",
"pg",
"structure",
"database",
"object"
],
"engines": {
"node": ">= 14.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/**/@(*.spec|*.test)*",
"!dist/**/__test__",
"module-files"
],
"homepage": "https://www.pg-structure.com",
"bugs": "https://github.com/ozum/pg-structure/issues",
"repository": "ozum/pg-structure",
"license": "MIT",
"scripts": {
"execute": "ts-node --transpile-only --compiler-options '{ \"module\": \"commonjs\" }'",
"watch": "ts-node-dev --no-notify --respawn --transpile-only --compiler-options '{ \"module\": \"commonjs\" }'",
"lint": "eslint --ignore-path .gitignore --cache --max-warnings 0 --ext js,jsx,ts,tsx,vue --fix .",
"format": "prettier . --write",
"release": "npm run readme && git pull && git add -A && git commit && git push --follow-tags",
"test": "jest --coverage",
"readme": "node module-files/scripts/tsmod.js readme",
"build": "tsc",
"docs:build": "npm run tsmod vuepress-api && NODE_ENV=production vuepress build docs",
"docs:dev": "npm run tsmod vuepress-api && vuepress dev docs",
"postinstall": "is-ci || husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"tsmod": "node module-files/scripts/tsmod.js",
"yo:update": "yo tsmod:uninstall --no-install --force && yo 'tsmod' '--vuepress' '--github-workflow' 'pg'"
},
"vuepress": {
"google-analytics-id": "UA-45732546-4"
},
"dependencies": {
"@typescript-plus/fast-memoize-decorator": "^0.1.0",
"dotenv": "^8.2.0",
"fast-memoize": "^2.5.2",
"indexable-array": "^0.7.4",
"inflection": "^1.12.0",
"json5": "^2.1.3",
"lodash.get": "^4.4.2",
"pg": "^8.0.3",
"pg-connection-string": "^2.2.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@ozum/pinst": "^2.1.4",
"@types/inflection": "^1.5.28",
"@types/jest": "^26.0.20",
"@types/json5": "^2.2.0",
"@types/lodash.get": "^4.4.6",
"@types/node": "^14.14.31",
"@types/pg": "^8.6.1",
"@types/pg-connection-string": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vuepress/plugin-active-header-links": "^1.8.2",
"@vuepress/plugin-google-analytics": "^1.8.2",
"@vuepress/plugin-pwa": "^1.8.2",
"commitizen": "^4.2.3",
"concat-md": "^0.3.5",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"is-ci": "^3.0.0",
"jest": "^29.5.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"pg-test-util": "^2.0.6",
"prettier": "^2.2.1",
"readmeasy": "^0.2.7",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.24.7",
"typedoc-neo-theme": "^1.1.0",
"typedoc-plugin-example-tag": "^1.0.2",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.0.4",
"vuepress": "^1.8.2",
"vuepress-bar": "^0.3.0",
"walkdir": "^0.4.1"
}
}