{
  "name": "dw-cache",
  "version": "0.0.120",
  "description": "The highest performance constant complexity cache algorithm.",
  "private": false,
  "homepage": "https://github.com/falsandtru/dw-cache",
  "repository": {
    "type": "git",
    "url": "https://github.com/falsandtru/dw-cache"
  },
  "keywords": [
    "cache",
    "lru",
    "lfu",
    "arc"
  ],
  "types": "./index.d.ts",
  "main": "./dist/index.js",
  "files": [
    "dist",
    "index.*",
    "src",
    "test",
    "*.ts",
    "*.js",
    "*.json",
    "*.map",
    "*.md",
    "NOTICE",
    "LICENSE"
  ],
  "dependencies": {
    "spica": "0.0.803"
  },
  "devDependencies": {
    "@types/mocha": "10.0.7",
    "@types/power-assert": "1.5.12",
    "@typescript-eslint/parser": "^7.16.0",
    "babel-loader": "^9.1.3",
    "babel-plugin-unassert": "^3.2.0",
    "concurrently": "^8.2.2",
    "eslint": "^8.56.0",
    "eslint-plugin-redos": "^4.4.5",
    "eslint-webpack-plugin": "^4.2.0",
    "glob": "^11.0.0",
    "karma": "^6.4.3",
    "karma-chrome-launcher": "^3.2.0",
    "karma-coverage": "^2.2.1",
    "karma-firefox-launcher": "^2.1.3",
    "karma-mocha": "^2.0.1",
    "karma-power-assert": "^1.0.0",
    "mocha": "^10.6.0",
    "npm-check-updates": "^16.14.20",
    "ts-loader": "^9.5.1",
    "typescript": "5.4.5",
    "webpack": "^5.93.0",
    "webpack-cli": "^5.1.4",
    "webpack-merge": "^6.0.1",
    "zipfian-integer": "^1.0.1"
  },
  "scripts": {
    "update": "ncu -u && npm i --no-shrinkwrap",
    "dev": "concurrently \"webpack --env mode=test -w\" \"karma start --auto-watch\"",
    "test": "webpack --env mode=test && karma start --single-run --concurrency 1 --reporters dots,coverage",
    "lint": "webpack --env mode=lint",
    "bench": "webpack --env mode=bench && karma start --concurrency 1 --browsers Chrome",
    "dist": "webpack --env mode=dist"
  },
  "author": "falsandtru",
  "license": "(Apache-2.0 AND MPL-2.0)"
}
