-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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": "amqplib-sugar",
"version": "0.4.0",
"description": "Sugar methods for amqplib",
"license": "MIT",
"author": "Stefan Walther",
"main": "index.js",
"repository": "[email protected]:stefanwalther/amqplib-sugar.git",
"scripts": {
"docs": "npm run api-docs && docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"api-docs": "docker run --rm -v ${PWD}:/opt/jsdoc2md stefanwalther/jsdoc2md ./src/index.js > ./docs/api-docs.md",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "eslint src",
"lint:src:fix": "eslint src --fix",
"lint:test": "eslint test",
"lint:test:fix": "eslint test --fix",
"test": "npm run test:unit",
"test:unit": "npm run lint:test && mocha './test/unit/**/*.spec.js' --require './test/mocha.conf.js'"
},
"dependencies": {
"amqplib": "^0.5.1",
"promise-retry": "^1.1.1",
"sammler-nodelib-logger": "sammler/sammler-nodelib-logger"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.7.2",
"eslint-config-space-single": "^0.2.0",
"jsdoc-to-markdown": "^3.0.0",
"mocha": "^3.5.3"
},
"engines": {
"node": ">=8.4.0"
},
"verb": {
"run": true,
"toc": false,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": []
},
"lint": {
"reflinks": true
},
"reflinks": [
"verb",
"verb-readme-generator"
]
},
"winster": {
"configFile": "./src/config/winster-config.js"
}
}