forked from fdesjardins/bunyan-postgres-stream
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1 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
{
"name": "bunyan-postgres-stream",
"version": "1.2.5",
"description": "A bunyan stream for PostgreSQL",
"license": "MIT",
"repository": "fdesjardins/bunyan-postgres-stream",
"author": {
"name": "Forrest Desjardins",
"email": "[email protected]",
"url": "github.com/fdesjardins"
},
"engines": {
"node": ">=7"
},
"scripts": {
"test": "eslint *.js && nyc ava test/test.js"
},
"files": [
"index.js"
],
"keywords": [
"bunyan",
"postgres",
"postgresql",
"logging",
"stream",
"sink",
"logs",
"node",
"knex",
"pgpool",
"pool"
],
"dependencies": {
"pg": "^6.1.5"
},
"devDependencies": {
"ava": "^0.18.2",
"bunyan": "^1.8.9",
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"knex": "^0.12.9",
"nyc": "^10.1.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}