initial commit
[squeep-amqp-helper] / package.json
1 {
2 "name": "@squeep/amqp-helper",
3 "version": "1.0.0",
4 "description": "A wrapper around amqplib which codifies some opinions and simplifies producing and consuming.",
5 "engines": {
6 "node": ">=14"
7 },
8 "repository": {
9 "type": "git",
10 "url": "https://git.squeep.com/squeep-amqp-helper/"
11 },
12 "main": "index.js",
13 "scripts": {
14 "coverage": "nyc npm test",
15 "coverage-check": "nyc check-coverage",
16 "eslint": "eslint *.js lib",
17 "test": "mocha --recursive"
18 },
19 "author": "",
20 "license": "ISC",
21 "dependencies": {
22 "amqplib": "^0.10.3"
23 },
24 "devDependencies": {
25 "@squeep/test-helper": "git+https://git.squeep.com/squeep-test-helper#v1.0.0",
26 "eslint": "^8.28.0",
27 "eslint-plugin-node": "^11.1.0",
28 "eslint-plugin-security": "^1.5.0",
29 "eslint-plugin-sonarjs": "^0.16.0",
30 "mocha": "^10.1.0",
31 "nyc": "^15.1.0",
32 "pre-commit": "^1.2.2",
33 "sinon": "^15.0.0"
34 }
35 }