{
  "name": "tachijs",
  "version": "1.0.0-2",
  "description": "Highly testable dead simple web server written in Typescript",
  "main": "dist",
  "files": [
    "dist/**/*",
    "!dist/examples/**/*",
    "!dist/specs/**/*"
  ],
  "scripts": {
    "dev": "nodemon",
    "build": "rimraf dist && tsc",
    "format": "prettier --write 'src/**/*.ts'",
    "lint": "npm run lint:prettier && npm run lint:tslint",
    "lint:prettier": "prettier --check 'src/**/*.ts'",
    "lint:tslint": "tslint -p .",
    "test": "npm run test:types && npm run lint && npm run test:api-coverage",
    "test:api": "jest",
    "test:api-watch": "jest --watch",
    "test:api-coverage": "jest --coverage",
    "test:types-watch": "tsc --watch --noEmit",
    "test:types": "tsc --noEmit",
    "prepublishOnly": "npm run test && npm run build"
  },
  "keywords": [
    "expressjs",
    "typescript",
    "decorators",
    "dependency-injection",
    "inversifyjs",
    "nestjs"
  ],
  "author": "Junyoung Choi <fluke8259@gmail.com> (https://github.com/rokt33r)",
  "homepage": "https://github.com/BoostIO/tachijs#readme",
  "license": "MIT",
  "devDependencies": {
    "@types/body-parser": "^1.17.0",
    "@types/cookie-parser": "^1.4.1",
    "@types/express": "^4.16.0",
    "@types/express-session": "^1.15.11",
    "@types/jest": "^24.0.0",
    "@types/node": "^11.9.4",
    "@types/prettier": "^1.15.2",
    "@types/pug": "^2.0.4",
    "@types/supertest": "^2.0.7",
    "body-parser": "^1.18.3",
    "cookie-parser": "^1.4.3",
    "express-session": "^1.15.6",
    "jest": "^23.6.0",
    "nodemon": "^1.18.9",
    "prettier": "^1.16.4",
    "pug": "^2.0.3",
    "reflect-metadata": "^0.1.13",
    "rimraf": "^2.6.3",
    "supertest": "^3.3.0",
    "ts-jest": "^23.10.5",
    "ts-node": "^8.0.1",
    "tslint": "^5.12.0",
    "tslint-config-prettier": "^1.17.0",
    "typescript": "^3.2.2"
  },
  "dependencies": {
    "express": "^4.16.4"
  }
}
