{
  "name": "amqp-client-node",
  "version": "1.0.11",
  "description": "Library for publish and subscribe events on message bus. In addition, it is possible to perform resource requests from the use of the standard commonly known as RPC.",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "scripts": {
    "start": "npm run build",
    "build": "tsc",
    "prebuild": "tslint -c tslint.json -p tsconfig.json",
    "test": "nyc --clean --all --reporter=text-summary mocha test/**/*.spec.ts",
    "test:cov": "nyc --clean --all --reporter=html --reporter=text mocha test/**/*.spec.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nutes-uepb/amqp-client-node.git"
  },
  "nyc": {
    "include": [
      "**/*.tsx",
      "**/*.ts"
    ],
    "exclude": [
      "**/*.d.ts",
      "test/*",
      "config/*"
    ],
    "extension": [
      ".ts",
      ".tsx"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "all": true
  },
  "keywords": [
    "amqp",
    "publish",
    "subscribe",
    "rpc",
    "rabbitmq",
    "event",
    "event-bus",
    "channel",
    "queue",
    "exchange",
    "async",
    "communication"
  ],
  "author": "NUTES/UEPB",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/nutes-uepb/amqp-client-node/issues"
  },
  "homepage": "https://github.com/nutes-uepb/amqp-client-node#readme",
  "dependencies": {
    "amqplib": "^0.5.6",
    "inversify": "^5.0.1",
    "reflect-metadata": "^0.1.13",
    "winston": "^3.2.1"
  },
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.0.13",
    "chai": "^4.2.0",
    "mocha": "^8.0.1",
    "nyc": "^15.1.0",
    "ts-node": "^8.10.2",
    "tslint": "^6.1.2",
    "typescript": "^3.9.5"
  },
  "files": [
    "lib/**/*"
  ]
}
