-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.29 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
{
"name": "loopback-component-mq",
"version": "0.0.0-development",
"description": "Loopback Component for working with a Message Queue",
"homepage": "https://github.com/fullcube/loopback-component-mq",
"author": {
"name": "Bram Borggreve @beeman"
},
"files": [
"lib"
],
"main": "./lib/index.js",
"keywords": [
"loopback",
"component",
"loopback-component-mq",
"rabbit",
"rabbit-mq"
],
"scripts": {
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text --reporter=text-summary mocha test/*test.js --exit",
"dev": "nodemon test/fixtures/test-server/server.js --ignore db.json --ext js,json",
"lint": "eslint .",
"pretest": "npm run lint",
"test:watch": "npm run test -- -w",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"license": "MIT",
"dependencies": {
"amqp-stats": "https://github.com/fullcube/node-amqp-stats/tarball/fe86722fd278067969f03addde57ed53f0910cd8",
"bluebird": "3.7.2",
"debug": "4.3.1",
"lodash": "4.17.21",
"rabbot": "2.1.0"
},
"devDependencies": {
"chai": "4.3.4",
"compression": "1.7.4",
"config": "3.3.6",
"coveralls": "3.1.0",
"dirty-chai": "2.0.1",
"eslint": "7.25.0",
"eslint-config-fullcube": "latest",
"husky": "6.0.0",
"loopback": "3.28.0",
"loopback-boot": "3.3.1",
"loopback-component-explorer": "6.5.1",
"loopback-component-fixtures": "1.1.1",
"mocha": "8.4.0",
"mocha-sinon": "2.1.2",
"nodemon": "2.0.7",
"nyc": "15.1.0",
"semantic-release": "17.4.2",
"serve-favicon": "2.5.0",
"sinon": "10.0.0",
"sinon-chai": "3.6.0",
"strong-error-handler": "4.0.0",
"supertest": "6.1.3",
"validate-commit-msg": "2.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fullcube/loopback-component-mq.git"
},
"config": {
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"style": "patch",
"refactor": "patch",
"perf": "patch",
"test": "patch",
"build": "patch",
"ci": "patch",
"chore": "patch",
"revert": "patch"
},
"validate-commit-msg": {
"types": "conventional-commit-types"
}
}
}