{
  "name": "sqs-consumer",
  "version": "5.7.0",
  "description": "Build SQS-based Node applications without the boilerplate",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "npm run clean && tsc",
    "watch": "tsc --watch",
    "clean": "rm -fr dist/*",
    "prepublish": "npm run build",
    "pretest": "npm run build",
    "test": "mocha --recursive --full-trace --exit",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint . --fix",
    "coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary",
    "lcov": "nyc mocha && nyc report --reporter=lcov",
    "posttest": "npm run lint"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/BBC/sqs-consumer.git"
  },
  "bugs": {
    "url": "https://github.com/BBC/sqs-consumer/issues"
  },
  "homepage": "https://github.com/BBC/sqs-consumer",
  "keywords": [
    "sqs",
    "queue",
    "consumer"
  ],
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/debug": "^4.1.5",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.0.13",
    "@types/sinon": "^9.0.4",
    "@types/typescript": "^2.0.0",
    "chai": "^4.2.0",
    "codeclimate-test-reporter": "^0.5.1",
    "eslint": "^7.2.0",
    "eslint-config-iplayer-ts": "^2.0.0",
    "mocha": "^8.0.1",
    "nyc": "^15.1.0",
    "p-event": "^4.2.0",
    "sinon": "^9.0.2",
    "ts-node": "^8.10.2",
    "tslint-config-airbnb": "^5.11.2",
    "tslint-microsoft-contrib": "^6.2.0",
    "typescript": "^3.9.5",
    "aws-sdk": "^2.1114.0"
  },
  "dependencies": {
    "debug": "^4.3.1"
  },
  "peerDependencies": {
    "aws-sdk": "^2.1114.0"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "eslintConfig": {
    "extends": "iplayer-ts",
    "parserOptions": {
      "ecmaVersion": 2017,
      "sourceType": "module"
    }
  },
  "mocha": {
    "spec": "test/**/**/*.ts",
    "require": "ts-node/register"
  }
}
