-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "pg-promise-robust-connection",
"version": "0.0.0-development",
"description": "Initates a direct pg-promise connection that will try to re-establish itself on connection loss",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --declaration",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/FountainheadTechnologies/pg-promise-robust-connection.git"
},
"keywords": [
"pg",
"pg-promise",
"direct",
"listener",
"reconnect",
"retry",
"robust"
],
"author": "Fountainhead Technologies Ltd.",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/FountainheadTechnologies/pg-promise-robust-connection/issues"
},
"homepage": "https://github.com/FountainheadTechnologies/pg-promise-robust-connection#readme",
"devDependencies": {
"@optics/codestyle": "^1.0.0",
"@types/node": "^8.5.2",
"@types/pg-promise": "^5.4.3",
"cz-conventional-changelog": "^2.1.0",
"semantic-release": "^11.0.2",
"tslint": "^5.8.0",
"tslint-consistent-codestyle": "^1.11.0",
"typescript": "^2.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}