{
  "author": "planttheidea",
  "ava": {
    "failFast": true,
    "files": [
      "test/*.js",
      "!plugins/*.js"
    ],
    "require": [
      "@babel/register",
      "@babel/polyfill"
    ],
    "sources": [
      "src/*.js"
    ],
    "verbose": true
  },
  "browser": "dist/moize.min.js",
  "browserslist": [
    "defaults",
    "Explorer >= 9",
    "Safari >= 6",
    "Opera >= 15",
    "iOS >= 8",
    "Android >= 4"
  ],
  "bugs": {
    "url": "https://github.com/planttheidea/moize/issues"
  },
  "dependencies": {
    "fast-equals": "^1.6.0",
    "fast-stringify": "^1.1.0",
    "micro-memoize": "^2.1.1"
  },
  "description": "Blazing fast memoization based on all parameters passed",
  "devDependencies": {
    "@babel/cli": "^7.7.7",
    "@babel/core": "^7.7.7",
    "@babel/plugin-syntax-flow": "^7.7.4",
    "@babel/plugin-transform-flow-strip-types": "^7.7.4",
    "@babel/polyfill": "^7.7.0",
    "@babel/preset-env": "^7.7.7",
    "@babel/preset-flow": "^7.7.4",
    "@babel/preset-react": "^7.7.4",
    "@babel/preset-typescript": "^7.7.7",
    "@babel/register": "^7.7.7",
    "ava": "^2.4.0",
    "babel-eslint": "^10.0.3",
    "babel-loader": "^8.0.0",
    "benchmark": "^2.1.4",
    "bluebird": "^3.7.2",
    "cli-table2": "^0.2.0",
    "eslint": "^6.8.0",
    "eslint-config-rapid7": "^3.1.0",
    "eslint-friendly-formatter": "^4.0.1",
    "eslint-loader": "^3.0.3",
    "fast-memoize": "^2.5.1",
    "flow-babel-webpack-plugin": "^1.1.1",
    "flow-bin": "^0.114.0",
    "fs-extra": "^8.1.0",
    "html-webpack-plugin": "^3.2.0",
    "husky": "^3.1.0",
    "in-publish": "^2.0.0",
    "ink-docstrap": "^1.3.2",
    "jsdoc": "^3.5.5",
    "jsdoc-babel": "^0.5.0",
    "jsdom": "^15.2.1",
    "jsdom-global": "^3.0.2",
    "lodash": "^4.17.11",
    "lru-memoize": "^1.0.2",
    "mem": "^6.0.1",
    "memoizee": "^0.4.14",
    "memoizerific": "^1.11.3",
    "nyc": "^15.0.0",
    "optimize-js-plugin": "^0.0.4",
    "ora": "^4.0.3",
    "prop-types": "^15.6.2",
    "q": "^1.5.1",
    "ramda": "^0.26.1",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "rimraf": "^3.0.0",
    "rollup": "^1.27.14",
    "rollup-plugin-babel": "^4.0.1",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-uglify": "^6.0.4",
    "sinon": "^8.0.2",
    "underscore": "^1.9.1",
    "webpack": "^4.41.5",
    "webpack-cli": "^3.3.10",
    "webpack-dev-server": "^3.10.1"
  },
  "homepage": "https://github.com/planttheidea/moize#readme",
  "keywords": [
    "cache",
    "expire",
    "lru",
    "memoize",
    "memoization",
    "optimize",
    "performance",
    "promise",
    "ttl"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "module": "es/index.js",
  "name": "moize",
  "nyc": {
    "exclude": [
      "**/plugins/*.js",
      "**/test/*.js"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/planttheidea/moize.git"
  },
  "scripts": {
    "benchmark": "npm run transpile:lib -- --no-comments && node benchmark/index.js",
    "benchmark:alternative": "npm run transpile:lib -- --no-comments && ALTERNATIVE=true node benchmark/index.js",
    "build": "NODE_ENV=production rollup -c",
    "clean": "npm run clean:lib && npm run clean:es && npm run clean:dist && npm run clean:mjs && npm run clean:docs",
    "clean:dist": "rimraf dist",
    "clean:docs": "rimraf docs",
    "clean:es": "rimraf es",
    "clean:lib": "rimraf lib",
    "clean:mjs": "rimraf mjs",
    "copy:types": "cp src/index.d.ts index.d.ts",
    "dev": "NODE_ENV=development webpack-dev-server --colors --progress --config=webpack/webpack.config.js",
    "dist": "npm run clean:dist && npm run build",
    "docs": "npm run clean:docs && jsdoc -c ./jsdoc.config.json && cp img/*.png docs/img && git add --all",
    "flow": "flow check src",
    "lint": "NODE_ENV=test eslint src",
    "lint:fix": "NODE_ENV=test eslint src --fix",
    "release": "release-it",
    "release:beta": "release-it --config=.release-it.beta.json",
    "release:scripts": "npm run lint && npm run flow && npm run copy:types && npm run test:coverage && npm run transpile:lib && npm run transpile:es && npm run transpile:mjs && npm run rename:mjs && npm run dist",
    "rename:mjs": "node ./js-to-mjs.js",
    "start": "npm run dev",
    "test": "NODE_PATH=. NODE_ENV=production BABEL_ENV=test ava",
    "test:coverage": "nyc npm test",
    "test:watch": "NODE_PATH=. NODE_ENV=test ava --watch",
    "transpile:es": "npm run clean:es && BABEL_ENV=es babel src --out-dir es",
    "transpile:lib": "npm run clean:lib && BABEL_ENV=lib babel src --out-dir lib",
    "transpile:mjs": "npm run clean:mjs && BABEL_ENV=mjs babel src --out-dir mjs"
  },
  "sideEffects": false,
  "types": "./index.d.ts",
  "version": "5.4.7"
}
