guidesmiths/rascal

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "rascal",
  "version": "19.0.0",
  "description": "A config driven wrapper for amqplib supporting multi-host connections, automatic error recovery, redelivery flood protection, transparent encryption / decryption,  channel pooling and publication timeouts",
  "main": "index.js",
  "dependencies": {
    "async": "^3.2.4",
    "debug": "^4.3.4",
    "forward-emitter": "^0.1.1",
    "generic-pool": "^3.8.2",
    "lodash": "^4.17.21",
    "lru-cache": "^7.10.1",
    "safe-json-parse": "^4.0.0",
    "stashback": "^2.0.1",
    "superagent": "^8.0.9",
    "uuid": "^8.3.2",
    "xregexp": "^5.1.0"
  },
  "devDependencies": {
    "amqplib": "^0.10.2",
    "chalk": "^4.1.2",
    "chance": "^1.1.8",
    "eslint": "^8.45.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.27.5",
    "husky": "^8.0.3",
    "lint-staged": "^11.2.4",
    "nyc": "^15.1.0",
    "random-readable": "^1.0.1",
    "superagent-defaults": "^0.1.14",
    "zunit": "^4.0.0"
  },
  "peerDependencies": {
    "amqplib": ">=0.5.5"
  },
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "test": "zUnit",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "lint-staged": "lint-staged",
    "coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
    "docker": "docker run -d --name rascal-rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management",
    "prepare": "husky install"
  },
  "lint-staged": {
    "**/*.js": "eslint --fix"
  },
  "keywords": [
    "amqplib",
    "amqp",
    "rabbitmq",
    "callback",
    "promise",
    "await",
    "async"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/onebeyond/rascal.git"
  },
  "bugs": {
    "url": "https://github.com/onebeyond/rascal/issues"
  },
  "homepage": "https://onebeyond.github.io/rascal/",
  "author": "Stephen Cresswell",
  "license": "MIT",
  "zUnit": {
    "pollute": true,
    "pattern": "^[\\w-]+.tests.js$"
  }
}