{
  "name": "jpex",
  "version": "5.3.0",
  "description": "Javascript Prototype Extension",
  "main": "dist/cjs/jpex.js",
  "module": "dist/es/jpex.js",
  "types": "dist/ts/index.d.ts",
  "scripts": {
    "clear-cache": "rm -rf node_modules/.cache",
    "test": "jest",
    "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
    "coverage": "jest --coverage",
    "lint": "eslint './src/**/*.ts' --fix && tsc --noEmit",
    "build:prepare": "rm -rf dist",
    "build:js": "rollup --config ./rollup.config.js",
    "build:ts": "tsc -d --outDir dist/ts --emitDeclarationOnly --downlevelIteration ./src/index.ts",
    "build:post": "node ./postbuild-checks.js",
    "build": "yarn build:prepare && yarn build:js && yarn build:ts && yarn build:post",
    "prepublishOnly": "yarn build",
    "semantic-release": "semantic-release",
    "ci": "yarn install && yarn lint && yarn test && yarn build",
    "prepare": "husky install"
  },
  "lint-staged": {
    "src/**/*.{js,ts}": [
      "eslint",
      "prettier --write --ignore-unknown"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jpex-js/jpex.git"
  },
  "author": "Jack Ellis",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/jpex-js/jpex/issues"
  },
  "homepage": "https://github.com/jpex-js/jpex",
  "devDependencies": {
    "@babel/core": "^7.7.7",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/preset-env": "^7.7.7",
    "@babel/preset-typescript": "^7.8.3",
    "@commitlint/cli": "^8.3.4",
    "@commitlint/config-conventional": "^8.3.4",
    "@types/jest": "^26.0.20",
    "@types/node": "^14.0.26",
    "@typescript-eslint/eslint-plugin": "^4.2.0",
    "@typescript-eslint/parser": "^4.2.0",
    "eslint": "^7.5.0",
    "eslint-config-airbnb-typescript-prettier": "^4.1.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.1.5",
    "husky": "^5.1.3",
    "jest": "^26.6.3",
    "lint-staged": "^10.5.4",
    "prettier": "^2.2.1",
    "rollup": "^2.23.0",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-cleanup": "^3.2.1",
    "rollup-plugin-node-resolve": "^5.2.0",
    "semantic-release": "^17.1.1",
    "typescript": "^4.0.3"
  },
  "dependencies": {
    "@jpex-js/babel-plugin": "^1.3.0"
  }
}
