forked from ozum/pg-structure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.52 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.52 KB
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
114
115
116
117
118
119
{
"name": "pg-structure",
"version": "7.2.3",
"description": "Reverse engineer PostgreSQL database as a detailed JS Object.",
"keywords": [],
"engines": {
"node": ">=10.8.0"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"/bin",
"/lib/**/!(*.spec|*.test)*.*",
"/dist/**/!(*.spec|*.test)*.*",
"/@types",
"/module-files",
"LICENSE"
],
"homepage": "http://www.pg-structure.com",
"bugs": "https://github.com/ozum/pg-structure/issues",
"repository": {
"type": "git",
"url": "https://github.com/ozum/pg-structure.git"
},
"author": {
"name": "Özüm Eldoğan"
},
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -b",
"commit": "git-cz",
"commit:add": "git add -A && npm run commit",
"devkeeper:update": "devkeeper update",
"docs:build": "npm-run-all -p typedoc:md typedoc:html && rm -rf docs/nav.02.api docs/.vuepress/public/api-site && mv api-docs-md docs/nav.02.api && mv api-docs-html docs/.vuepress/public/api-site && cp assets/typedoc/01.typedoc-iframe.md docs/nav.02.api/ && NODE_ENV=production vuepress build docs",
"docs:dev": "vuepress dev docs",
"file:watch": "ts-node-dev --respawn --transpileOnly --compiler-options '{ \"module\": \"commonjs\" }'",
"format": "prettier --write --config .prettierrc --check 'src/**/*.+(js|jsx|json|less|css|ts|tsx|md|vue|gql)'",
"lint": "eslint --max-warnings=0 --ignore-path .gitignore --cache 'src/**/*.+(js|jsx|ts|tsx|vue)'",
"readme": "if grep -q '{% include \"api.md\" %}' 'README.njk'; then npm run typedoc:single-md; mkdir -p temp && mv api.md temp/; fi && readmeasy --partial-dirs temp,node_modules/devkeeper/module-files/template-partials && rm -rf temp",
"release": "(git diff --quiet && git diff --staged --quiet && echo No files has been changed) || (npm run build && npm run commit:add && git checkout master && git pull origin master && standard-version --no-verify && npm run readme && git add README.md && git commit --amend --no-edit && git push --follow-tags origin master && git push --tags && npm publish)",
"test": "NODE_ENV=test jest --coverage --config=jest.config.json",
"test:watch": "NODE_ENV=test jest --watch --config=jest.config.json",
"typedoc:html": "rm -rf api-docs-html && typedoc --plugin typedoc-plugin-example-tag --mode file --out api-docs-html",
"typedoc:md": "rm -rf api-docs-md && typedoc --platform vuepress --plugin typedoc-plugin-example-tag,typedoc-plugin-markdown --excludeExternals --excludePrivate --excludeProtected --theme markdown --readme none --mode file --out api-docs-md && find api-docs-md -name \"index.md\" -exec sh -c 'mv \"$1\" \"${1%index.md}\"index2.md' - {} \\;",
"typedoc:single-md": "npm run typedoc:md && concat-md --dir-name-as-title api-docs-md > api.md && rm -rf api-docs-md",
"validate": "npm-run-all -p lint test"
},
"dependencies": {
"@types/pg": "^7.14.3",
"@typescript-plus/fast-memoize-decorator": "^0.1.0",
"fast-memoize": "^2.5.2",
"indexable-array": "^0.6.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": {
"@types/inflection": "^1.5.28",
"@types/json5": "0.0.30",
"@types/lodash.get": "^4.4.6",
"@types/pg-connection-string": "^2.0.0",
"devkeeper": "^0.1.74",
"pg-test-util": "^2.0.6"
},
"devkeeperModifications": {
"files": [
".gitignore",
".commitlintrc",
".czrc",
".editorconfig",
".eslintignore",
".eslintrc.js",
".gitattributes",
".gitignore-to-rename",
".huskyrc",
".lintstagedrc",
".prettierrc",
"jest.config.json",
"tsconfig.json",
"assets/typedoc/01.typedoc-iframe.md",
"docs/.vuepress/config.js"
],
"objectKeys": [
"engines",
"main",
"types",
"scripts.build",
"scripts.typedoc:md",
"scripts.typedoc:html",
"scripts.typedoc:single-md",
"scripts.readme",
"scripts.format",
"scripts.lint",
"scripts.test",
"scripts.test:watch",
"scripts.validate",
"scripts.commit",
"scripts.commit:add",
"scripts.release",
"scripts.file:watch",
"scripts.docs:dev",
"scripts.docs:build",
"scripts.devkeeper:update"
],
"arrayKeys": {
"files": [
"/bin",
"/lib/**/!(*.spec|*.test)*.*",
"/dist/**/!(*.spec|*.test)*.*",
"/@types",
"/module-files",
"LICENSE"
]
},
"version": "0.1.74"
}
}