{
  "name": "memoize-fn",
  "version": "2.0.1",
  "main": "dist/index.cjs.js",
  "description": "A memoization library that caches the result of the different arguments",
  "author": "imcuttle <moyuyc95@gmail.com>",
  "scripts": {
    "test": "jest",
    "test-ci": "npm run clean && npm test",
    "prepublishOnly": "npm test",
    "prepare": "npm run build",
    "clean": "rimraf dist",
    "build": "npm run clean && rollup -c",
    "dev": "npm run build -- -w",
    "doc": "documentation --github --markdown-toc=false readme index.js -a public -s \"API\" && git add README.md",
    "version": "npm run doc && npm run changelog",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged",
      "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
    }
  },
  "sideEffects": false,
  "engines": {
    "node": ">=8"
  },
  "keywords": [
    "imcuttle",
    "memoize",
    "fn",
    "memoize-fn"
  ],
  "license": "MIT",
  "repository": "imcuttle/memoize-fn",
  "jest": {
    "testMatch": [
      "**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
    ]
  },
  "module": "index.js",
  "browser": "dist/index.umd.js",
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^7.5.2",
    "@commitlint/config-conventional": "^7.5.0",
    "@types/jest": "^24.0.12",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
    "conventional-changelog-cli": "^2.0.17",
    "documentation": "^10.1.0",
    "husky": "^2.1.0",
    "jest": "^23.6.0",
    "prettier": "^1.17.0",
    "pretty-quick": "^1.10.0",
    "rimraf": "^2.6.3",
    "rollup": "^1.10.1"
  },
  "dependencies": {
    "shallowequal": "^1.1.0"
  }
}
