initial commit
[squeep-amqp-helper] / package.json
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..bcb2ab2
--- /dev/null
@@ -0,0 +1,35 @@
+{
+  "name": "@squeep/amqp-helper",
+  "version": "1.0.0",
+  "description": "A wrapper around amqplib which codifies some opinions and simplifies producing and consuming.",
+  "engines": {
+    "node": ">=14"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git.squeep.com/squeep-amqp-helper/"
+  },
+  "main": "index.js",
+  "scripts": {
+    "coverage": "nyc npm test",
+    "coverage-check": "nyc check-coverage",
+    "eslint": "eslint *.js lib",
+    "test": "mocha --recursive"
+  },
+  "author": "",
+  "license": "ISC",
+  "dependencies": {
+    "amqplib": "^0.10.3"
+  },
+  "devDependencies": {
+    "@squeep/test-helper": "git+https://git.squeep.com/squeep-test-helper#v1.0.0",
+    "eslint": "^8.28.0",
+    "eslint-plugin-node": "^11.1.0",
+    "eslint-plugin-security": "^1.5.0",
+    "eslint-plugin-sonarjs": "^0.16.0",
+    "mocha": "^10.1.0",
+    "nyc": "^15.1.0",
+    "pre-commit": "^1.2.2",
+    "sinon": "^15.0.0"
+  }
+}