-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "roger-rabbit",
"version": "2.1.1",
"description": "amqplib wrapper",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test jest",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignicaodigitalbr/roger-rabbit.git"
},
"keywords": [
"amqp",
"broker",
"rabbitmq"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ignicaodigitalbr/roger-rabbit/issues"
},
"homepage": "https://github.com/ignicaodigitalbr/roger-rabbit#readme",
"dependencies": {
"amqplib": "^0.5.2",
"lodash": "^4.17.11"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"jest": "^24.7.1"
},
"jest": {
"timers": "fake",
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"coverageReporters": [
"json",
"lcov"
]
}
}