{
  "name": "release-checker",
  "version": "0.10.0",
  "description": "Check your release before publishing",
  "main": "build/lib/index.js",
  "typings": "build/lib/index.d.ts",
  "bin": {
    "release-checker": "build/bin/release-checker.js"
  },
  "files": [
    "build/bin",
    "build/lib",
    "!*.test.js",
    "!*.test.d.ts"
  ],
  "scripts": {
    "build": "rimraf build && npm run format && npm run lint && tsc",
    "postbuild": "ncp lib/checkers/sensitive-data-checker/.sensitivedata build/lib/checkers/sensitive-data-checker/.sensitivedata ",
    "check-format": "prettier --list-different \"{bin,lib,e2e}/**/*.ts\"",
    "format": "prettier --write \"{bin,lib,e2e}/**/*.ts\"",
    "jest--init": "jest --init",
    "lint": "tslint -p tsconfig.json",
    "package": "rimraf ./package && rm -f release-checker*.tgz && npm pack",
    "release-checker": "node ./build/bin/release-checker",
    "rimraf": "rimraf",
    "test": "npm run build && npm run package && jest --config=jest.config.js --runInBand",
    "test-with-no-coverage-check": "npm run build && npm run package && jest --config=jest.config.no-coverage.js --runInBand",
    "test--watch": "npm run test -- --watch",
    "tsc": " tsc --listEmittedFiles",
    "tsc--init": "tsc --init",
    "tslint--init": "tslint --init"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hdorgeval/release-checker.git"
  },
  "keywords": [
    "module",
    "npm",
    "package",
    "publish",
    "release",
    "release-automation",
    "release-helper"
  ],
  "author": "Henri d'Orgeval",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/hdorgeval/release-checker/issues"
  },
  "homepage": "https://github.com/hdorgeval/release-checker#readme",
  "devDependencies": {
    "@types/jest": "23.3.10",
    "@types/semver": "5.5.0",
    "jest": "23.6.0",
    "ncp": "2.0.0",
    "prettier": "1.15.3",
    "rimraf": "2.6.2",
    "ts-jest": "23.10.5",
    "tslint": "5.12.0",
    "tslint-config-prettier": "1.17.0",
    "typescript": "3.2.2"
  },
  "dependencies": {
    "@types/micromatch": "3.1.0",
    "@types/minimist": "1.2.0",
    "@types/node": "10.12.18",
    "micromatch": "3.1.10",
    "minimist": "1.2.0",
    "semver": "5.6.0"
  },
  "engines": {
    "node": ">=6.0.0"
  }
}