-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "feathers-amqp-client",
"version": "0.0.1",
"description": "A simple AMQP client for feathers.js applications",
"main": "index.js",
"scripts": {
"check": "npm run lint && npm test && npm run coverage",
"coverage": "cross-env FORCE_COLOR=1 nyc report && nyc check-coverage",
"lint": "eslint --max-warnings=0 index.js test",
"lint-autofix": "eslint --fix index.js test",
"test": "npm run test:integration",
"test:integration": "cross-env NODE_ENV=test nyc --no-clean --reporter=none mocha --exit --timeout 60000 --recursive test/integration"
},
"keywords": [
"amqp",
"rabbitmq",
"feathers",
"js",
"node"
],
"author": "Daniel Kelleher",
"license": "MIT",
"dependencies": {
"amqplib": "^0.5.6",
"async-exit-hook": "^2.0.1"
},
"devDependencies": {
"@feathersjs/express": "^4.5.4",
"@feathersjs/feathers": "^4.5.3",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"feathers-memory": "^4.1.0",
"mocha": "^8.0.1",
"node-docker-api": "^1.1.22",
"nyc": "^15.1.0",
"prettier": "^2.0.5"
}
}