{
  "name": "html-to-image-fast",
  "version": "1.6.8",
  "description": "Generates an image from a DOM node using HTML5 canvas and SVG. For local use",
  "main": "lib/index.js",
  "module": "es/index.js",
  "unpkg": "dist/html-to-image-fast.js",
  "types": "lib/index.d.ts",
  "files": [
    "dist",
    "es",
    "lib"
  ],
  "keywords": [
    "screenshot",
    "capture",
    "canvas",
    "html",
    "dom",
    "image",
    "vector",
    "svg"
  ],
  "scripts": {
    "lint": "tslint ./src/*.ts -c tslint.json -p tsconfig.json --fix",
    "clean": "rimraf dist es lib",
    "build:esm": "tsc --module esnext --target es2015 --outDir ./es",
    "build:cjs": "tsc --module commonjs --target es5 --outDir ./lib",
    "build:umd": "rollup -c",
    "build": "run-s build:esm build:cjs build:umd",
    "prebuild": "run-s lint clean",
    "test": "karma start",
    "test-debug": "karma start --browsers=Chrome --single-run=false --debug",
    "test-watch": "karma start --browsers=Chrome --single-run=false --auto-watch",
    "coveralls": "cat ./test/coverage/lcov.info | coveralls",
    "pretest": "rimraf ./test/coverage",
    "prepare": "run-s build"
  },
  "husky": {
    "hooks": {
      "prepare-commit-msg": "devmoji -e --lint",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "src/**/*.ts": [
      "tslint -c tslint.json -p ./tsconfig.json --fix"
    ],
    "**/*.{js,jsx,tsx,ts,less,md,json}": [
      "pretty-quick — staged"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "license": "MIT",
  "authors": {
    "name": "ryantando",
    "email": "ryantando@gmail.com"
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "@fortawesome/fontawesome-free": "^5.15.1",
    "@rollup/plugin-commonjs": "^15.1.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@rollup/plugin-typescript": "^6.0.0",
    "@types/jasmine": "^3.6.0",
    "@types/jquery": "^3.5.3",
    "coveralls": "^3.1.0",
    "devmoji": "^2.1.9",
    "husky": "^4.3.0",
    "imagediff": "^1.0.8",
    "jasmine-core": "^3.6.0",
    "karma": "^5.2.3",
    "karma-chrome-launcher": "^3.1.0",
    "karma-coverage": "^2.0.3",
    "karma-jasmine": "^4.0.1",
    "karma-spec-reporter": "^0.0.32",
    "karma-typescript": "^5.2.0",
    "lint-staged": "^10.4.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.1.2",
    "pretty-quick": "^3.1.0",
    "rimraf": "^3.0.0",
    "rollup": "^2.32.1",
    "rollup-plugin-filesize": "^9.0.0",
    "rollup-plugin-terser": "^7.0.2",
    "tslib": "^2.0.0",
    "tslint": "^6.1.3",
    "tslint-config-airbnb": "^5.11.2",
    "tslint-config-prettier": "^1.18.0",
    "tslint-eslint-rules": "^5.4.0",
    "typescript": "^4.0.3"
  },
  "release": {
    "extends": "@bubkoo/semantic-release-config"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ryantando/html-to-image-fast.git"
  },
  "bugs": {
    "url": "https://github.com/ryantando/html-to-image-fast/issues"
  },
  "homepage": "https://github.com/ryantando/html-to-image-fast#readme"
}
