{
  "name": "html-es6cape",
  "version": "2.0.2",
  "description": "Escape HTML special characters (including `)",
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/index.cjs.js",
    "dist/index.esm.js",
    "dist/index.d.ts"
  ],
  "scripts": {
    "prepare": "husky install",
    "type:check": "tsc src/*.ts --noEmit",
    "format": "prettier --write --ignore-unknown {src,test}/*",
    "format:check": "prettier --check {src,test}/*",
    "test": "vitest run --coverage",
    "pre-commit": "lint-staged",
    "prebuild": "rimraf dist && mkdir dist",
    "build": "npm run build:types && npm run build:lib",
    "build:types": "tsc src/*.ts --declaration --emitDeclarationOnly --outDir dist",
    "build:lib": "rollup -c",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AntonioVdlC/html-es6cape.git"
  },
  "keywords": [
    "html",
    "escape",
    "es6"
  ],
  "author": "Antonio Villagra De La Cruz",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/AntonioVdlC/html-es6cape/issues"
  },
  "homepage": "https://github.com/AntonioVdlC/html-es6cape#readme",
  "devDependencies": {
    "@rollup/plugin-typescript": "^8.2.0",
    "c8": "^7.11.0",
    "esbuild": "^0.14.34",
    "eslint": "^8.13.0",
    "eslint-config-prettier": "^8.5.0",
    "husky": "^7.0.2",
    "lint-staged": "^12.3.7",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.41.2",
    "rollup-plugin-terser": "^7.0.2",
    "tslib": "^2.1.0",
    "typescript": "^4.2.3",
    "vite": "^2.9.1",
    "vitest": "^0.9.3"
  }
}
