-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.59 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "amqp-log-to-pg",
"description": "Logs from an amqp queue to a db.",
"version": "2.1.1",
"author": "Tim Allen <tim@noblesamurai.com>",
"license": "BSD-3-Clause",
"main": "src/index",
"bin": {
"amqp-log-to-pg": "./bin/run.js"
},
"scripts": {
"coverage": "c8 npm test",
"pretest": "xo",
"test": "mocha --recursive test",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md index.js",
"start": "node index.js"
},
"homepage": "https://github.com/noblesamurai/amqp-log-to-pg",
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/amqp-log-to-pg.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/amqp-log-to-pg/issues"
},
"dependencies": {
"debug": "^4.3.1",
"env-var": "^7.0.0",
"knex": "^0.21.5",
"ow": "^0.17.0",
"pg": "^8.3.3",
"simple-amqplib": "^7.0.3"
},
"devDependencies": {
"c8": "^7.7.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^1.2.2",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^5.0.0",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^8.3.2",
"proxyquire": "^2.1.3",
"sinon": "^10.0.0",
"xo": "^0.38.2"
},
"keywords": [],
"c8": {
"all": true,
"include": [
"src"
],
"exclude": [
"src/migrations"
],
"reporter": [
"lcov",
"text"
]
},
"semistandard": {
"env": [
"mocha"
]
},
"xo": {
"env": "mocha",
"extends": "semistandard"
}
}