-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
72 lines (72 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
{
"name": "pogi",
"version": "3.0.0-beta5",
"description": "An easy PostgreSQL query handler on top of pg.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"test": "node spec/run.js",
"test_debug": "node --inspect-brk=9229 spec/run.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"release_patch": "npm version patch; conventional-changelog -p angular -i CHANGELOG.md -s -r2; git add --all ./; git commit -m\"chore:generate changelog\"; git push; npm publish",
"release_minor": "npm version minor; conventional-changelog -p angular -i CHANGELOG.md -s -r2; git add --all ./; git commit -m\"chore:generate changelog\"; git push; npm publish",
"release_major": "npm version minor; conventional-changelog -p angular -i CHANGELOG.md -s -r2; git add --all ./; git commit -m\"chore:generate changelog\"; git push; npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holdfenytolvaj/pogi.git"
},
"keywords": [
"typescript",
"postgresql",
"postgres",
"postgre",
"pgsql",
"pg"
],
"dependencies": {
"handlebars": "^4.7.6",
"lodash": "^4.17.20",
"minimatch": "^3.0.4",
"moment": "^2.29.1",
"pg": "^8.7.1",
"pg-query-stream": "^4.2.1",
"through": "~2.3.8",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jasmine": "^3.10.3",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.12",
"@types/pg": "^8.6.4",
"@types/through": "^0.0.30",
"@types/yargs": "^17.0.8",
"dotenv": "^14.3.2",
"jasmine": "^4.0.2",
"jest": "^27.4.7",
"semantic-release": "^19.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"yargs": "^17.3.1"
},
"author": "Laszlo Radics<[email protected]>, Geza Radics<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/holdfenytolvaj/pogi/issues"
},
"homepage": "https://github.com/holdfenytolvaj/pogi#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
}
}