{
  "_from": "ts-custom-error@^3.0.0",
  "_id": "ts-custom-error@3.2.0",
  "_inBundle": false,
  "_integrity": "sha512-cBvC2QjtvJ9JfWLvstVnI45Y46Y5dMxIaG1TDMGAD/R87hpvqFL+7LhvUDhnRCfOnx/xitollFWWvUKKKhbN0A==",
  "_location": "/ts-custom-error",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "ts-custom-error@^3.0.0",
    "name": "ts-custom-error",
    "escapedName": "ts-custom-error",
    "rawSpec": "^3.0.0",
    "saveSpec": null,
    "fetchSpec": "^3.0.0"
  },
  "_requiredBy": [
    "/@zxing/library"
  ],
  "_resolved": "https://registry.npmjs.org/ts-custom-error/-/ts-custom-error-3.2.0.tgz",
  "_shasum": "ff8f80a3812bab9dc448536312da52dce1b720fb",
  "_spec": "ts-custom-error@^3.0.0",
  "_where": "C:\\xampp\\htdocs\\agent-happy-grains\\node_modules\\@zxing\\library",
  "author": {
    "name": "Adrien Gibrat",
    "email": "adrien.gibrat@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/adriengibrat/ts-custom-error/issues"
  },
  "bundleDependencies": false,
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "deprecated": false,
  "description": "Extend native Error to create custom errors",
  "devDependencies": {
    "@semantic-release/changelog": "^5.0.1",
    "@semantic-release/git": "^9.0.0",
    "@types/jest": "^25.2.3",
    "@types/node": "^14.0.4",
    "commitizen": "^4.1.2",
    "cz-conventional-changelog": "^3.2.0",
    "jest": "^26.0.1",
    "jest-tap-reporter": "^1.9.0",
    "lint-staged": "^10.2.4",
    "microbundle": "^0.11.0",
    "prettier": "^2.0.5",
    "semantic-release": "^17.0.7",
    "travis-deploy-once": "^5.0.11",
    "ts-jest": "^26.0.0",
    "tslint": "^6.1.2",
    "tslint-config-prettier": "^1.18.0",
    "tslint-config-standard": "^9.0.0",
    "typescript": "^3.9.3",
    "uglifyjs": "^2.4.11"
  },
  "engines": {
    "node": ">=8.0.0"
  },
  "homepage": "https://github.com/adriengibrat/ts-custom-error#readme",
  "jest": {
    "reporters": [
      "jest-tap-reporter"
    ],
    "testRegex": "\\.spec\\.ts$",
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "preset": "ts-jest",
    "testMatch": null
  },
  "keywords": [
    "custom Error",
    "extend",
    "Error"
  ],
  "license": "MIT",
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "tslint",
      "git add"
    ]
  },
  "main": "dist/custom-error.js",
  "mangle": {
    "regex": "^(?!CustomError\b).*"
  },
  "module": "dist/custom-error.mjs",
  "name": "ts-custom-error",
  "prettier": {
    "useTabs": true,
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "release": {
    "verifyConditions": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git"
    ],
    "prepare": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git"
    ],
    "publish": [
      "@semantic-release/npm",
      {
        "path": "@semantic-release/github",
        "assets": [
          {
            "path": "dist/custom-error.d.ts",
            "label": "Typescript typings"
          },
          {
            "path": "dist/custom-error.js",
            "label": "Common JS"
          },
          {
            "path": "dist/custom-error.js.map",
            "label": "Common JS - sourcemap"
          },
          {
            "path": "dist/custom-error.mjs",
            "label": "ES module"
          },
          {
            "path": "dist/custom-error.mjs.map",
            "label": "ES module - sourcemap"
          },
          {
            "path": "dist/custom-error.umd.js",
            "label": "UMD (minified, CDN ready)"
          },
          {
            "path": "dist/custom-error.umd.js.map",
            "label": "UMD - sourcemap"
          }
        ]
      }
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adriengibrat/ts-custom-error.git"
  },
  "scripts": {
    "build": "tsc --build tsconfig.json && microbundle build --no-compress --entry dist/src/index.js",
    "commit": "lint-staged && git-cz",
    "coverage": "jest --coverage",
    "deploy": "travis-deploy-once semantic-release",
    "dist:cleanup": "rm --recursive --force dist/src",
    "minify:umd": "uglifyjs --compress --output $npm_package_unpkg -- $npm_package_unpkg",
    "postbuild": "npm run minify:umd && npm run types:concat && npm run dist:cleanup",
    "prebuild": "rm --recursive --force dist",
    "start": "jest --watch --notify",
    "test": "jest",
    "types:concat": "cat dist/src/factory.d.ts >> dist/src/custom-error.d.ts && cat dist/src/custom-error.d.ts > dist/custom-error.d.ts && cat dist/custom-error.d.ts > dist/custom-error.umd.d.ts"
  },
  "types": "dist/custom-error.d.ts",
  "unpkg": "dist/custom-error.umd.js",
  "version": "3.2.0"
}
