{
  "name": "ccscan",
  "description": "Scan files for credit card numbers",
  "version": "1.1.2",
  "author": "Neo Financial Engineering <engineering@neofinancial.com>",
  "license": "MIT",
  "main": "build/index.js",
  "bin": {
    "ccscan": "bin/ccscan.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/neofinancial/ccscan"
  },
  "engines": {
    "node": ">=8.3.0"
  },
  "scripts": {
    "start": "./bin/ccscan.js",
    "watch": "ncc build src/app.ts -o build --minify --watch",
    "build": "ncc build src/app.ts -o build --minify",
    "clean": "rimraf build",
    "test": "NODE_ENV=test jest",
    "lint": "eslint \"**/*.{ts,js}\"",
    "format": "prettier --write \"**/*.{ts,js,json,yaml,yml,md}\"",
    "format:check": "prettier --debug-check \"**/*.{ts,js,json,yaml,yml,md}\"",
    "prepublishOnly": "rimraf build && ncc build src/app.ts -o build --minify"
  },
  "files": [
    "bin",
    "build"
  ],
  "lint-staged": {
    "*.{ts,js}": [
      "eslint --max-warnings 100",
      "git add"
    ],
    "*.{ts,js,json,yaml,yml,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "devDependencies": {
    "@types/jest": "^24.0.20",
    "@types/line-reader": "^0.0.28",
    "@types/node": "^12.11.7",
    "@types/yargs": "^13.0.3",
    "@zeit/ncc": "^0.20.5",
    "chalk": "^2.4.2",
    "eslint": "^6.0.0",
    "eslint-config-neo": "~0.5.1",
    "fast-luhn": "^1.0.4",
    "globby": "^10.0.1",
    "husky": "^3.0.8",
    "jest": "^24.9.0",
    "line-reader": "^0.4.0",
    "lint-staged": "^9.4.2",
    "prettier": "^1.19.0",
    "rimraf": "^3.0.0",
    "strip-ansi": "^5.2.0",
    "ts-jest": "^24.1.0",
    "ts-node": "^8.4.1",
    "typescript": "3.7.3",
    "yargs": "^14.2.0"
  }
}
