{
  "author": "tony.quetano@planttheidea.com",
  "ava": {
    "failFast": true,
    "files": [
      "test/*.js"
    ],
    "require": [
      "@babel/register"
    ],
    "sources": [
      "src/*.js"
    ],
    "verbose": true
  },
  "browserslist": [
    "defaults",
    "Explorer >= 9",
    "Safari >= 6",
    "Opera >= 15",
    "iOS >= 8",
    "Android >= 4"
  ],
  "bugs": {
    "url": "https://github.com/planttheidea/micro-memoize/issues"
  },
  "description": "A tiny, crazy fast memoization library for the 95% use-case",
  "devDependencies": {
    "@babel/cli": "^7.1.2",
    "@babel/core": "^7.1.2",
    "@babel/plugin-syntax-flow": "^7.0.0",
    "@babel/plugin-transform-flow-strip-types": "^7.0.0",
    "@babel/plugin-transform-runtime": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-flow": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "@babel/register": "^7.0.0",
    "@babel/runtime": "^7.1.2",
    "ava": "^1.0.0-rc.1",
    "babel-eslint": "^10.0.1",
    "babel-loader": "^8.0.4",
    "benchmark": "^2.1.4",
    "case-sensitive-paths-webpack-plugin": "^2.1.2",
    "cli-table2": "^0.2.0",
    "eslint": "^5.7.0",
    "eslint-config-rapid7": "^3.0.4",
    "eslint-friendly-formatter": "^4.0.1",
    "eslint-loader": "^2.1.1",
    "fast-equals": "^1.6.1",
    "fast-memoize": "^2.5.1",
    "flow-babel-webpack-plugin": "^1.1.1",
    "fs-extra": "^7.0.0",
    "hash-it": "^4.0.3",
    "html-webpack-plugin": "^3.2.0",
    "in-publish": "^2.0.0",
    "lodash": "^4.17.10",
    "lru-memoize": "^1.0.2",
    "mem": "^4.0.0",
    "memoizee": "^0.4.13",
    "memoizerific": "^1.11.3",
    "nyc": "^13.1.0",
    "optimize-js-plugin": "^0.0.4",
    "ora": "^3.0.0",
    "prop-types": "^15.6.2",
    "ramda": "^0.25.0",
    "react": "^16.4.2",
    "react-dev-utils": "^6.0.5",
    "react-dom": "^16.4.2",
    "react-hot-loader": "^4.3.11",
    "rimraf": "^2.6.2",
    "rollup": "^0.66.6",
    "rollup-plugin-babel": "^4.0.1",
    "rollup-plugin-uglify": "^6.0.0",
    "sinon": "^7.0.0",
    "underscore": "^1.9.1",
    "webpack": "^4.20.2",
    "webpack-cli": "^3.1.2",
    "webpack-dev-server": "^3.1.9"
  },
  "homepage": "https://github.com/planttheidea/micro-memoize#readme",
  "keywords": [
    "memoize",
    "memoized",
    "memoizer",
    "memoization",
    "memo",
    "memcache",
    "memcached",
    "cache",
    "cached",
    "storage",
    "memory",
    "optimize",
    "performance",
    "lru",
    "expire"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "module": "es/index.js",
  "name": "micro-memoize",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/planttheidea/micro-memoize.git"
  },
  "scripts": {
    "benchmark": "npm run transpile:lib -- --no-comments && node benchmark/index.js",
    "benchmark:trace": "npm run transpile:lib -- --no-comments && node --trace-deopt --trace-opt benchmark/trace-test.js",
    "benchmark:alternative": "npm run transpile:lib -- --no-comments && ALTERNATIVE=true node benchmark/index.js",
    "build": "NODE_ENV=production rollup -c",
    "clean": "rimraf lib && rimraf es && rimraf mjs && rimraf dist",
    "copy:mjs": "node ./es-to-mjs.js",
    "dev": "NODE_ENV=development webpack-dev-server --progress --colors --config=webpack/webpack.config.js",
    "flow": "flow check src",
    "lint": "eslint --max-warnings 0 src",
    "prepublish": "if in-publish; then npm run prepublish:compile; fi",
    "prepublish:compile": "npm run lint && npm run flow && npm run test:coverage && npm run clean && npm run transpile:lib && npm run transpile:es && npm run copy:mjs && npm run build",
    "start": "npm run dev",
    "test": "NODE_PATH=. NODE_ENV=test ava",
    "test:coverage": "nyc --cache npm test",
    "test:watch": "npm run test -- --watch",
    "transpile:es": "BABEL_ENV=es babel src --out-dir es",
    "transpile:lib": "BABEL_ENV=lib babel src --out-dir lib"
  },
  "sideEffects": false,
  "types": "./index.d.ts",
  "version": "2.1.2"
}
