forked from fdesjardins/bunyan-postgres-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.41 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
{
"name": "bunyan-postgres-stream",
"description": "A bunyan stream for PostgreSQL",
"version": "1.5.5",
"author": {
"name": "Forrest Desjardins",
"email": "[email protected]",
"url": "github.com/fdesjardins"
},
"dependencies": {
"pg": "^8.9.0"
},
"devDependencies": {
"bunyan": "^1.8.12",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"knex": "^2.4.2",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"prettier": "^2.0.4"
},
"engines": {
"node": ">=7"
},
"files": [
"index.js"
],
"keywords": [
"bunyan",
"knex",
"logging",
"logs",
"node",
"pgpool",
"pool",
"postgres",
"postgresql",
"sink",
"stream"
],
"license": "MIT",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"repository": "fdesjardins/bunyan-postgres-stream",
"scripts": {
"migrate": "knex --cwd test --knexfile knexfile.js migrate:latest",
"test": "docker-compose up -d db && docker-compose run test bash -c 'npm install && npm run migrate && npm run test:ci' && docker-compose down",
"test:ci": "npx nyc mocha --opts mocha.opts test/test.js"
}
}