{
  "name": "schnipp",
  "version": "2.0.0",
  "description": "a simple framework to write better AWS Lambda functions",
  "keywords": [
    "TypeScript",
    "aws",
    "lambda"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/otbe/schnipp.git"
  },
  "author": "Benjamin Otto",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/otbe/schnipp/issues"
  },
  "homepage": "https://github.com/otbe/schnipp",
  "main": "index.js",
  "typings": "index.d.ts",
  "scripts": {
    "build": "yarn clean && tsc && yarn copy-release-files",
    "build:watch": "tsc -w",
    "lint": "prettier-tslint check '{src,tests}/**/*.ts'",
    "lint:fix": "prettier-tslint fix '{src,tests}/**/*.ts'",
    "test": "jest",
    "test:ci": "yarn lint && yarn test --coverageReporters text --coverageReporters lcovonly && cat coverage/lcov.info | coveralls",
    "test:watch": "yarn test --watch",
    "preversion": "yarn lint && yarn test && yarn build",
    "postversion": "git push && git push --tags",
    "clean": "rimraf dist",
    "copy-release-files": "cp package.json dist/package.json && cp README.md dist/README.md"
  },
  "dependencies": {
    "@types/aws-lambda": "^8.10.13",
    "@types/node": "^10.11.4",
    "@types/url-join": "^0.8.2",
    "url-join": "^4.0.0"
  },
  "devDependencies": {
    "@types/jest": "^23.3.1",
    "aws-sdk": "^2.310.0",
    "coveralls": "^3.0.2",
    "env-cmd": "^8.0.2",
    "jest": "^23.5.0",
    "prettier": "^1.14.2",
    "prettier-tslint": "^0.4.0",
    "reflect-metadata": "^0.1.12",
    "rimraf": "^2.6.2",
    "ts-jest": "^23.1.4",
    "typescript": "^3.0.3"
  },
  "peerDependencies": {
    "reflect-metadata": "^0.1.12"
  }
}
