CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json83 linesDownload Raw Back to toad-cache
1{2  "name": "toad-cache",3  "description": "LRU and FIFO caches for Client or Server",4  "version": "3.7.0",5  "homepage": "https://github.com/kibertoad/toad-cache",6  "author": "Igor Savin <kibertoad@gmail.com>",7  "repository": {8    "type": "git",9    "url": "git://github.com/kibertoad/toad-cache.git"10  },11  "bugs": {12    "url": "https://github.com/kibertoad/toad-cache/issues"13  },14  "files": [15    "dist",16    "*.d.ts",17    "*.d.cts"18  ],19  "license": "MIT",20  "source": "index.js",21  "exports": {22    ".": {23      "import": {24        "types": "./toad-cache.d.ts",25        "default": "./dist/toad-cache.mjs"26      },27      "require": {28        "types": "./toad-cache.d.cts",29        "default": "./dist/toad-cache.cjs"30      }31    }32  },33  "main": "dist/toad-cache.cjs",34  "types": "./toad-cache.d.ts",35  "type": "module",36  "sourceType": "module",37  "engines": {38    "node": ">=12"39  },40  "engineStrict": true,41  "scripts": {42    "build": "del-cli dist && del-cli coverage && npm run rollup",43    "benchmark": "npm run build && node benchmark.js",44    "changelog": "auto-changelog -p",45    "lint": "eslint *.js src/*.js test/*.js",46    "lint:fix": "eslint --fix *.js src/*.js test/*.js && prettier --write \"{src,test}/**/*.js\" benchmark.js",47    "rollup": "rollup --config",48    "test": "vitest",49    "test:coverage": "npm run rollup && npm run test -- --coverage",50    "test:ci": "npm run lint && npm run test:coverage && npm run test:typescript",51    "test:typescript": "tsd",52    "types:generate": "npx -p typescript tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir .",53    "prepublishOnly": "npm run build"54  },55  "devDependencies": {56    "@vitest/coverage-v8": "^1.0.0",57    "@rollup/plugin-terser": "^0.4.4",58    "auto-changelog": "^2.4.0",59    "del-cli": "^5.1.0",60    "eslint": "^8.50.0",61    "eslint-config-prettier": "^9.0.0",62    "eslint-plugin-import": "^2.28.1",63    "eslint-plugin-prettier": "^5.0.0",64    "precise": "^4.0.0",65    "rollup": "^4.6.0",66    "vitest": "^1.1.3",67    "tsd": "^0.30.0",68    "typescript": "^5.3.2"69  },70  "keywords": [71    "LRU",72    "FIFO",73    "cache",74    "client",75    "server",76    "least",77    "recently",78    "used",79    "first",80    "browser"81  ]82}83