-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
76 lines (76 loc) · 2.29 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
{
"name": "pg-generator",
"version": "4.8.3",
"description": "Template Based Scaffolding Tool for PostgreSQL.",
"main": "index.js",
"preferGlobal": true,
"bin": {
"pgen": "lib/bin/pgen.js"
},
"homepage": "http://www.pg-generator.com",
"bugs": "https://github.com/ozum/pg-generator/issues",
"directories": {
"bin": "bin",
"doc": "docs"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "lab --timeout 7000 --globals @@any-promise/REGISTRATION,__core-js_shared__,SharedArrayBuffer,Atomics --leaks",
"doc": "cat docs/index.md > README.md && mkdocs build --clean",
"preversion": "npm test;",
"postversion": "npm run remove && npm run doc && git add -A site && git add README.md mkdocs.yml && git commit -m 'Doc update' && git push && git push --tags && git subtree push --prefix site origin gh-pages && npm publish;",
"generate": "node lib/bin/pgen.js template schwifty -t __sil-template --clear && rm -rf __sil-models && node lib/bin/pgen.js exec __sil-template --host localhost --port 5432 --user user --password password --schema public --target __sil-models --log info --extension nunj.html --indent 2",
"remove": "rm -rf __sil-models && rm -rf __sil-template"
},
"repository": {
"type": "git",
"url": "https://github.com/ozum/pg-generator.git"
},
"keywords": [
"pg",
"postgresql",
"reverse engineer",
"auto generate",
"sequelize",
"orm",
"scaffold"
],
"author": {
"name": "Özüm Eldoğan"
},
"license": "MIT",
"dependencies": {
"chalk": "^1.x",
"commander": "^2.20.0",
"eslint-fixer": "^0.1.5",
"fs-promise": "^2.x",
"inflection": "^1.x",
"inquirer": "^0",
"js-beautify": "^1.9.1",
"klaw": "^1.x",
"lodash": "^4.17.11",
"nunjucks": "^3.2.0",
"pg": "^7.10.0",
"pg-structure": "^4.2.2",
"winston": "^2.4.4"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"chai": "^4.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.x",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^5.x",
"eslint-plugin-react": "^7.12.4",
"fs-extra": "^3.0.1",
"knex": "^0.19.5",
"lab": "^14.3.4",
"mz": "^2.x",
"objection": "^0.9.4",
"pg-hstore": "^2",
"pg-test-util": "^1.x",
"sequelize": "^5.7.6"
}
}