{
  "name": "html2pug",
  "version": "4.0.0",
  "description": "Converts HTML to Pug",
  "main": "src/index.js",
  "bin": {
    "html2pug": "src/cli.js"
  },
  "dependencies": {
    "get-stdin": "^6.0.0",
    "has-flag": "^4.0.0",
    "html-minifier": "^4.0.0",
    "parse5": "^5.1.0"
  },
  "devDependencies": {
    "ava": "^1.4.1",
    "eslint": "^5.16.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-config-prettier": "^4.1.0",
    "eslint-plugin-import": "^2.16.0",
    "eslint-plugin-prettier": "^3.0.1",
    "husky": "^1.3.1",
    "lint-staged": "^8.1.5",
    "prettier": "^1.16.4"
  },
  "scripts": {
    "test": "ava test.js",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix"
  },
  "lint-staged": {
    "*.js": [
      "npm run lint:fix",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/izolate/html2pug.git"
  },
  "keywords": [
    "html",
    "pug",
    "jade",
    "convert",
    "templates"
  ],
  "author": "izolate <yoshtalwar@gmail.com> (http://izolate.net/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/izolate/html2pug/issues"
  },
  "homepage": "https://github.com/izolate/html2pug#readme",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "pre-push": "npm run lint"
    }
  }
}
