forked from holdfenytolvaj/pogi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.01 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
{
"name": "pogi",
"version": "2.9.2",
"description": "An easy PostgreSQL query handler on top of pg.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p src/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.3",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"moment": "^2.15.1",
"pg": "8.2.1",
"pg-query-stream": "^3.1.1",
"through": "~2.3.8",
"tslib": "^1.11.0"
},
"devDependencies": {
"@types/jasmine": "~2.5.35",
"@types/node": "^11.15.7",
"jasmine": "^3.5.0",
"semantic-release": "^8.2.0",
"typescript": "^3.9.3"
},
"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"
}
}
}