{
  "name": "serverless-offline-sns",
  "version": "0.65.0",
  "description": "Serverless plugin to run a local SNS server and call lambdas with events notifications.",
  "main": "dist/index.js",
  "scripts": {
    "build": "tsc -p src",
    "watch": "tsc -p src -w",
    "test": "nyc ts-mocha \"test/**/*.ts\" -p src/",
    "lint": "tslint -p src/",
    "prepare": "npm run lint && npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mj1618/serverless-offline-sns.git"
  },
  "keywords": [
    "serverless-plugin",
    "serverless",
    "sns",
    "offline",
    "localstack"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "author": "Matthew James <matthew.stephen.james@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mj1618/serverless-offline-sns/issues"
  },
  "homepage": "https://github.com/mj1618/serverless-offline-sns#readme",
  "dependencies": {
    "aws-sdk": "^2.403.0",
    "body-parser": "^1.18.2",
    "cors": "^2.8.4",
    "express": "^4.15.4",
    "lodash": "^4.17.4",
    "node-fetch": "^1.7.3",
    "uuid": "^3.1.0",
    "xml": "^1.0.1"
  },
  "devDependencies": {
    "@types/chai": "^4.0.4",
    "@types/express": "^4.0.37",
    "@types/mocha": "^2.2.43",
    "@types/node": "^8.0.25",
    "chai": "^4.1.2",
    "istanbul": "^0.4.5",
    "mocha": "^6.0.1",
    "nyc": "^11.2.1",
    "source-map-support": "^0.4.18",
    "ts-loader": "^2.3.7",
    "ts-mocha": "^1.0.3",
    "ts-node": "^3.3.0",
    "tslint": "^5.5.0",
    "typescript": "^2.5.2"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts"
    ],
    "include": [
      "src/"
    ],
    "reporter": [
      "html",
      "lcov"
    ],
    "all": true
  }
}
