-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "wait-for-postgres",
"version": "1.5.3",
"description": "Wait for a Postgres connection to become available",
"keywords": [
"Postgres",
"Notify",
"Event"
],
"author": "Joel Edwards (https://github.com/joeledwards)",
"contributors": [
"Joel Edwards <joeledwards@gmail.com> (https://github.com/joeledwards)"
],
"repository": {
"type": "git",
"url": "https://github.com/joeledwards/node-wait-for-postgres.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/joeledwards/node-durations/blob/master/LICENSE"
}
],
"main": "./lib/index",
"directories": {
"lib": "./lib"
},
"bin": {
"wait-for-postgres": "./bin/wait-for-postgres",
"wait4pg": "./bin/wait-for-postgres"
},
"dependencies": {
"bluebird": "^3.5.0",
"commander": "^2.9.0",
"durations": "^3.0.0",
"joi": "^10.6.0",
"pg": "^6.1.2",
"q": "^1.4.1"
},
"devDependencies": {
"coffee-script": "^1.12.3",
"lodash": "^4.17.4",
"mocha": "^3.2.0"
},
"scripts": {
"prepublish": "cake build",
"build": "cake build",
"test": "cake test"
},
"engines": {
"node": ">=0.10"
}
}