{
  "name": "tslint-config-standard",
  "version": "9.0.0",
  "description": "A TSLint config for JavaScript Standard Style",
  "main": "tslint.js",
  "files": [
    "tslint.js",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "lint": "eslint \"*.js\" \"test/*.js\"",
    "prettier": "prettier --write",
    "format": "npm run prettier -- \"{.,test}/*.{js,md,yml,yaml}\"",
    "test:gen": "GENERATE_ASSETS=true blue-tape test/index.js",
    "test:spec": "blue-tape test/index.js | tap-spec",
    "test": "npm run lint && npm run test:spec"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/blakeembrey/tslint-config-standard.git"
  },
  "keywords": [
    "tslint",
    "config",
    "standard",
    "standardjs",
    "typescript",
    "ts"
  ],
  "author": {
    "name": "Blake Embrey",
    "email": "hello@blakeembrey.com",
    "url": "http://blakeembrey.me"
  },
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/blakeembrey/tslint-config-standard/issues"
  },
  "homepage": "https://github.com/blakeembrey/tslint-config-standard",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,json,css,md,yml,yaml}": [
      "npm run prettier",
      "git add"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^12.12.5",
    "blue-tape": "^1.0.0",
    "eslint": "^6.6.0",
    "eslint-config-prettier": "^6.5.0",
    "eslint-config-standard": "^14.1.0",
    "husky": "^3.0.9",
    "lint-staged": "^9.4.2",
    "prettier": "^1.18.2",
    "standard": "^14.3.1",
    "tap-spec": "^5.0.0",
    "tslint": "^5.8.0",
    "typescript": "^3.6.4"
  },
  "dependencies": {
    "tslint-eslint-rules": "^5.3.1"
  }
}
