{
  "name": "okanjo-app-queue",
  "version": "6.0.1",
  "description": "Service for interfacing with RabbitMQ",
  "main": "QueueService.js",
  "scripts": {
    "clean": "rm -rf .nyc_output coverage",
    "test": "node_modules/.bin/mocha -R spec test",
    "cover": "node_modules/.bin/nyc node_modules/mocha/bin/_mocha --exit",
    "lint": "node_modules/.bin/eslint .",
    "report": "npm run cover && npm run lint"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/okanjo/okanjo-app-queue.git"
  },
  "keywords": [
    "Okanjo",
    "OkanjoApp",
    "Message Queue",
    "Queue",
    "RabbitMQ"
  ],
  "author": "Okanjo Partners Inc",
  "license": "MIT",
  "devDependencies": {
    "amqplib": "^0.8.0",
    "eslint": "^8.11.0",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "okanjo-app": "^3.2.0",
    "okanjo-app-broker": "^3.2.0",
    "should": "^13.2.3",
    "why-is-node-running": "^2.2.1"
  },
  "peerDependencies": {
    "amqplib": "^0.8.0",
    "okanjo-app": ">=3",
    "okanjo-app-broker": ">=3"
  },
  "dependencies": {
    "async": "^3.2.3",
    "rascal": "^14.4.0"
  },
  "mocha": {
    "require": ["should"],
    "reporter": "spec",
    "checkLeaks": true
  },
  "nyc": {
    "reporter": [
      "text-summary",
      "html",
      "lcovonly"
    ]
  },
  "eslintConfig": {
    "ignorePatterns": [
      "/node_modules/**",
      "/coverage/**",
      "/.nyc_output/**"
    ],
    "env": {
      "es6": true,
      "node": true
    },
    "parserOptions": {
      "ecmaVersion": 2018,
      "sourceType": "module"
    },
    "plugins": [],
    "extends": "eslint:recommended",
    "globals": {
      "require": true,
      "module": true,
      "describe": true,
      "it": true,
      "before": true,
      "after": true,
      "afterEach": true,
      "Promise": true
    },
    "overrides": [
      {
        "files": [
          "docs/**"
        ],
        "rules": {
          "no-console": "off",
          "no-unused-vars": "off"
        }
      },
      {
        "files": [
          "test/*.js"
        ],
        "parserOptions": {
          "sourceType": "script",
          "no-console": "off"
        }
      }
    ]
  }

}
