-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "pg-log2amqp-cli",
"description": "Consume a knex-log and send it to amqp.",
"version": "0.0.1",
"author": "Tim Allen <[email protected]>",
"license": "BSD",
"main": "src/index.js",
"scripts": {
"coverage": "nyc -a -c -r html -r text -r lcov npm test",
"pretest": "semistandard --env mocha",
"start": "node .",
"test": "mocha --recursive test",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md index.js"
},
"homepage": "https://github.com/noblesamurai/pg-log2amqp-cli",
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/pg-log2amqp-cli.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/pg-log2amqp-cli/issues"
},
"engines": {
"node": "8.x",
"npm": "5.x"
},
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"jsdoc-to-markdown": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"semistandard": "*"
},
"keywords": [],
"nyc": {
"exclude": [
"coverage",
"test"
]
},
"semistandard": {
"env": [
"mocha"
]
},
"dependencies": {
"amqplib": "^0.5.2",
"json-stringify-safe": "^5.0.1",
"knex": "^0.15.2",
"knex-log": "^2.2.0-streamopts.0",
"log-frame": "^1.0.5",
"logf-progress": "^1.3.2",
"pg": "^7.4.3",
"pg-query-stream": "^1.1.1",
"progress-stream": "^2.0.0"
}
}