-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
118 lines (118 loc) · 3.69 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
114
115
116
117
118
{
"name": "pg-generator",
"version": "1.0.0",
"description": "Template based scaffolding tool for PostgreSQL.",
"author": {
"name": "Özüm Eldoğan",
"email": "[email protected]",
"url": "https://www.ozum.net/"
},
"keywords": [
"pg",
"postgres",
"postgresql",
"reverse engineer",
"generator",
"auto generate",
"sequelize",
"objection",
"orm",
"scaffold"
],
"engines": {
"node": ">= 12.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/**/@(*.spec|*.test)*",
"!dist/**/__test__",
"module-files"
],
"bin": {
"pgen": "dist/bin/pgen.js"
},
"homepage": "https://www.pg-generator.com",
"bugs": "https://github.com/ozum/pg-generator/issues",
"repository": "ozum/pg-generator",
"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",
"readme": "node module-files/scripts/tsmod.js readme",
"prebuild": "not-sync dist",
"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",
"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' '--no-coverage'",
"local-link": "ln -s ../../pg-generator-example-sequelize node_modules/pg-generator-example-sequelize"
},
"vuepress": {
"google-analytics-id": ""
},
"dependencies": {
"fdir": "^5.0.0",
"ignor": "^1.2.0",
"inflection": "^1.12.0",
"json5": "^2.2.0",
"junk": "^3.1.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"meow": "^9.0.0",
"meow-helper": "^1.6.0",
"pg-structure": "^7.7.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/lodash.get": "^4.4.6",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^14.14.31",
"@types/pg": "^7.14.10",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@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": "^7.2.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": "^26.6.3",
"lint-staged": "^10.5.4",
"not-sync": "^1.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"readmeasy": "^0.2.7",
"ts-jest": "^26.5.1",
"ts-node-dev": "^1.1.1",
"typedoc": "^0.20.27",
"typedoc-neo-theme": "^1.1.0",
"typedoc-plugin-example-tag": "^1.0.2",
"typedoc-plugin-markdown": "^3.5.0",
"typedoc-plugin-param-names": "^2.0.0",
"typescript": "^4.1.5",
"vuepress": "^1.8.2",
"vuepress-bar": "^0.3.5",
"walkdir": "^0.4.1"
}
}