{
  "name": "tos",
  "description": "Terms of Service and Privacy Policy Generator",
  "license": "ISC",
  "author": "Buster Collings <busterc@gmail.com> (http://about.me/buster)",
  "repository": "busterc/tos",
  "version": "1.1.2",
  "main": "lib/index.js",
  "bin": {
    "tos": "lib/cli.js"
  },
  "files": ["lib"],
  "scripts": {
    "precommit": "lint-staged",
    "prepublishOnly": "nsp check",
    "pretest": "eslint .",
    "test": "jest --coverage"
  },
  "dependencies": {
    "html-entities": "^1.2.1",
    "html2jade": "^0.8.6",
    "request": "^2.85.0"
  },
  "devDependencies": {
    "coveralls": "^3.0.0",
    "eslint": "^4.19.1",
    "eslint-config-prettier": "^2.9.0",
    "eslint-config-xo": "^0.20.1",
    "eslint-plugin-json": "^1.2.0",
    "eslint-plugin-prettier": "^2.6.0",
    "husky": "^0.14.3",
    "jest": "^22.4.3",
    "lint-staged": "^7.0.4",
    "nsp": "^3.2.1",
    "prettier": "^1.11.1",
    "prettier-package-json": "^1.5.1"
  },
  "keywords": [
    "conditions",
    "generator",
    "of",
    "policy",
    "privacy",
    "service",
    "terms",
    "tos"
  ],
  "engines": {
    "npm": ">= 4.0.0"
  },
  "eslintConfig": {
    "extends": ["xo", "prettier"],
    "env": {
      "jest": true,
      "node": true
    },
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "singleQuote": true,
          "printWidth": 90
        }
      ]
    },
    "plugins": ["prettier", "json"]
  },
  "jest": {
    "testEnvironment": "node"
  },
  "lint-staged": {
    "*.js": ["eslint --fix", "git add"],
    "*.json": ["prettier --write", "git add"],
    "package.json": ["prettier-package-json --write", "git add"]
  },
  "reveal": true
}
