-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
113 lines (113 loc) · 3.64 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
108
109
110
111
112
113
{
"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": ""
},
"keywords": [
"postgresql",
"reverse engineer",
"pg",
"structure",
"database",
"object"
],
"engines": {
"node": ">= 12.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/**/@(*.spec|*.test)*",
"!dist/**/__test__",
"module-files",
"@types"
],
"homepage": "https://github.com/ozum/pg-structure",
"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",
"pretest": "not-sync coverage",
"test": "jest --coverage",
"readme": "node module-files/scripts/tsmod.js readme",
"prebuild": "not-sync dist",
"build": "tsc --incremental",
"docs:build": "npm run tsmod vuepress-api && NODE_ENV=production vuepress build docs",
"docs:dev": "npm run tsmod vuepress-api && vuepress dev docs",
"preinstall": "npx not-sync node_modules",
"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.0",
"inflection": "^1.12.0",
"json5": "^2.1.3",
"lodash.get": "^4.4.2",
"pg": "^8.0.3",
"pg-connection-string": "^2.2.1",
"tslib": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@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.25",
"@types/pg": "^7.14.3",
"@types/pg-connection-string": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@vuepress/plugin-active-header-links": "^1.8.0",
"@vuepress/plugin-google-analytics": "^1.8.0",
"@vuepress/plugin-pwa": "^1.8.0",
"commitizen": "^4.2.3",
"concat-md": "^0.3.5",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.8",
"is-ci": "^2.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"not-sync": "^1.4.0",
"npm-run-all": "^4.1.5",
"pg-test-util": "^2.0.6",
"prettier": "^2.2.1",
"readmeasy": "^0.2.7",
"ts-jest": "^26.5.0",
"ts-node-dev": "^1.1.1",
"typedoc": "^0.20.23",
"typedoc-neo-theme": "^1.1.0",
"typedoc-plugin-example-tag": "^1.0.2",
"typedoc-plugin-markdown": "^3.4.5",
"typescript": "^4.1.3",
"vuepress": "^1.8.0",
"vuepress-bar": "^0.3.5",
"walkdir": "^0.4.1"
}
}