{
  "name": "typescript-service",
  "version": "2.0.3",
  "license": "MIT",
  "description": "",
  "main": "dist/index.js",
  "typings": "src/index.ts",
  "scripts": {
    "test": "npm run eslint && npm run tscheck && npm run test:r",
    "test:r": "npm run mocha -- src/*.spec.ts",
    "mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --timeout 5000",
    "test:w": "npm run mocha -- --watch-extensions ts --watch src/**/*.spec.ts",
    "test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-extensions ts --watch src/**/*.spec.ts",
    "tscheck": "echo tscheck... && tsc --noEmit",
    "tscheck:w": "npm run tscheck -- --watch",
    "tsclint": "tsc --noEmit --pretty --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
    "tsclint:w": "npm run tsclint -- --watch",
    "eslint": "eslint src --ext ts",
    "eslint:fix": "eslint src --ext \"ts\" --fix",
    "eslint:w": "chokidar \"src/**/*.ts\" --initial -c \"npm run eslint\"",
    "lint:w": "run-p tsclint:w eslint:w",
    "semantic-release": "semantic-release",
    "prepublishOnly": "npm run build && sed -i -e 's/_devDependencies/__devDependencies/g' package.json",
    "build": "tsc",
    "prebuild": "npm run clean",
    "clean": "rimraf dist",
    "commit": "git-cz"
  },
  "dependencies": {
    "tslib": "^1.9.3"
  },
  "_devDependencies": {
    "@semantic-release/changelog": "^3.0.0",
    "@semantic-release/git": "^7.0.3",
    "@semantic-release/npm": "^5.0.4",
    "@types/mocha": "^5.2.5",
    "@types/mock-fs": "^3.6.30",
    "@types/node": "^10.9.3",
    "chokidar-cli": "^1.2.0",
    "eslint": "^5.4.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-typescript": "^0.12.0",
    "eslint-plugin-unicorn": "^6.0.0",
    "mocha": "^5.2.0",
    "mock-fs": "^4.6.0",
    "npm-run-all": "^4.1.3",
    "rimraf": "^2.6.2",
    "semantic-release": "^15.9.12",
    "ts-node": "^7.0.1",
    "typescript": "^2.9.2",
    "typescript-eslint-parser": "^16.0.1"
  },
  "engines": {
    "node": ">=6",
    "npm": ">=3"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/unlight/typescript-service.git"
  },
  "keywords": [],
  "release": {
    "generateNotes": {
      "writerOpts": {
        "__keep": "me"
      }
    },
    "verifyConditions": [
      "@semantic-release/changelog",
      "@semantic-release/github",
      "@semantic-release/npm",
      "@semantic-release/git"
    ],
    "prepare": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git"
    ],
    "publish": [
      "@semantic-release/npm",
      "@semantic-release/github"
    ],
    "success": [
      "@semantic-release/github"
    ],
    "fail": [
      "@semantic-release/github"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  }
}
