{
  "name": "simple-ts-di",
  "version": "3.2.3",
  "description": "Simple DI written for TypeScript, no deps",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "lint": "prettier-tslint check '{src,tests}/**/*.ts'",
    "lint:fix": "prettier-tslint fix '{src,tests}/**/*.ts'",
    "test": "jest",
    "test:ci": "yarn lint && yarn test",
    "test:watch": "yarn test --watch",
    "preversion": "yarn test:ci",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "TypeScript",
    "dependency",
    "injection",
    "DI"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/otbe/di.git"
  },
  "author": "Benjamin Otto",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/otbe/di/issues"
  },
  "homepage": "https://github.com/otbe/di#readme",
  "dependencies": {},
  "devDependencies": {
    "@types/jest": "^23.1.3",
    "babel-polyfill": "^6.26.0",
    "jest": "^23.2.0",
    "prettier": "^1.13.7",
    "prettier-tslint": "^0.4.0",
    "reflect-metadata": "^0.1.10",
    "ts-jest": "^23.0.0",
    "typescript": "^2.9.2"
  },
  "peerDependencies": {
    "reflect-metadata": "^0.1.X"
  }
}
