![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/mem/ |
{ "name": "mem", "version": "8.1.1", "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", "license": "MIT", "repository": "sindresorhus/mem", "funding": "https://github.com/sindresorhus/mem?sponsor=1", "author": { "name": "Sindre Sorhus", "email": "[email protected]", "url": "https://sindresorhus.com" }, "engines": { "node": ">=10" }, "scripts": { "test": "xo && npm run build && tsd && ava", "build": "del-cli dist && tsc", "prepack": "npm run build" }, "main": "dist", "types": "dist/index.d.ts", "files": [ "dist/index.js", "dist/index.d.ts" ], "keywords": [ "memoize", "function", "mem", "memoization", "cache", "caching", "optimize", "performance", "ttl", "expire", "promise" ], "dependencies": { "map-age-cleaner": "^0.1.3", "mimic-fn": "^3.1.0" }, "devDependencies": { "@ava/typescript": "^1.1.1", "@sindresorhus/tsconfig": "^0.7.0", "@types/serialize-javascript": "^4.0.0", "ava": "^3.15.0", "del-cli": "^3.0.1", "delay": "^4.4.0", "serialize-javascript": "^5.0.1", "tsd": "^0.13.1", "typescript": "^4.0.3", "xo": "^0.38.2" }, "ava": { "files": [ "test.ts" ], "timeout": "1m", "typescript": { "rewritePaths": { "./": "dist/" } } }, "xo": { "rules": { "@typescript-eslint/member-ordering": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/no-empty-function": "off" } } }