-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.09 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@itavy/mq-connector",
"version": "1.0.0",
"description": "Interface for mq connectivity for mq-router",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"test:e2e": "npm run test:e2e:rabbitmq",
"test:e2e:rabbitmq": "./node_modules/.bin/tap -b -t 5 ./test/e2e/RabbitMQ/*.js",
"test:coverage": "./node_modules/.bin/nyc npm test",
"test:check-style": "./node_modules/.bin/eslint index.js \"lib/latest/*.js\" \"test/**/*.js\"",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json",
"docs-md": "./node_modules/.bin/jsdoc2md --template README.hbs lib/latest/*.js > README.md",
"pretest": "npm run test:check-style"
},
"pre-commit": [
"test:coverage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/itavy/mq-connector.git"
},
"keywords": [
"mq",
"mq-connector",
"rabbitmq",
"nats"
],
"author": "Octavian Ionescu <itavyg@gmail.com> (https://github.com/itavy)",
"license": "MIT",
"devDependencies": {
"@itavy/test-utilities": "~6.0.1",
"eslint": "~5.12.1",
"eslint-config-airbnb": "~17.1.0",
"eslint-plugin-import": "~2.15.0",
"eslint-plugin-jsx-a11y": "~6.2.0",
"eslint-plugin-react": "~7.12.4",
"jaguarjs-jsdoc": "~1.1.0",
"jsdoc": "~3.5.5",
"jsdoc-to-markdown": "~4.0.1",
"mocha": "~5.2.0",
"nyc": "~13.1.0",
"pre-commit": "^1.2.2",
"tap": "^12.4.0"
},
"dependencies": {
"@itavy/ierror": "~1.2.0",
"amqplib": "~0.5.3",
"debug": "~4.1.1",
"p-event": "~2.2.0",
"semver": "~5.6.0"
},
"nyc": {
"all": true,
"color:": true,
"check-coverage": true,
"per-file": true,
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 95,
"include": [
"lib/latest/*.js"
],
"reporter": [
"lcov",
"text"
],
"watermarks": {
"check-coverage": true,
"statements": [
50,
95
],
"lines": [
50,
95
],
"functions": [
50,
95
],
"branches": [
50,
95
]
}
}
}