package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "_from": "mem@^8.1.1",
  3. "_id": "mem@8.1.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==",
  6. "_location": "/mem",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "mem@^8.1.1",
  12. "name": "mem",
  13. "escapedName": "mem",
  14. "rawSpec": "^8.1.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^8.1.1"
  17. },
  18. "_requiredBy": [
  19. "/webpack-dev-middleware"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz",
  22. "_shasum": "cf118b357c65ab7b7e0817bdf00c8062297c0122",
  23. "_spec": "mem@^8.1.1",
  24. "_where": "H:\\gs_nuxt\\node_modules\\webpack-dev-middleware",
  25. "author": {
  26. "name": "Sindre Sorhus",
  27. "email": "sindresorhus@gmail.com",
  28. "url": "https://sindresorhus.com"
  29. },
  30. "ava": {
  31. "files": [
  32. "test.ts"
  33. ],
  34. "timeout": "1m",
  35. "typescript": {
  36. "rewritePaths": {
  37. "./": "dist/"
  38. }
  39. }
  40. },
  41. "bugs": {
  42. "url": "https://github.com/sindresorhus/mem/issues"
  43. },
  44. "bundleDependencies": false,
  45. "dependencies": {
  46. "map-age-cleaner": "^0.1.3",
  47. "mimic-fn": "^3.1.0"
  48. },
  49. "deprecated": false,
  50. "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input",
  51. "devDependencies": {
  52. "@ava/typescript": "^1.1.1",
  53. "@sindresorhus/tsconfig": "^0.7.0",
  54. "@types/serialize-javascript": "^4.0.0",
  55. "ava": "^3.15.0",
  56. "del-cli": "^3.0.1",
  57. "delay": "^4.4.0",
  58. "serialize-javascript": "^5.0.1",
  59. "tsd": "^0.13.1",
  60. "typescript": "^4.0.3",
  61. "xo": "^0.38.2"
  62. },
  63. "engines": {
  64. "node": ">=10"
  65. },
  66. "files": [
  67. "dist/index.js",
  68. "dist/index.d.ts"
  69. ],
  70. "funding": "https://github.com/sindresorhus/mem?sponsor=1",
  71. "homepage": "https://github.com/sindresorhus/mem#readme",
  72. "keywords": [
  73. "memoize",
  74. "function",
  75. "mem",
  76. "memoization",
  77. "cache",
  78. "caching",
  79. "optimize",
  80. "performance",
  81. "ttl",
  82. "expire",
  83. "promise"
  84. ],
  85. "license": "MIT",
  86. "main": "dist",
  87. "name": "mem",
  88. "repository": {
  89. "type": "git",
  90. "url": "git+https://github.com/sindresorhus/mem.git"
  91. },
  92. "scripts": {
  93. "build": "del-cli dist && tsc",
  94. "prepack": "npm run build",
  95. "test": "xo && npm run build && tsd && ava"
  96. },
  97. "types": "dist/index.d.ts",
  98. "version": "8.1.1",
  99. "xo": {
  100. "rules": {
  101. "@typescript-eslint/member-ordering": "off",
  102. "@typescript-eslint/no-var-requires": "off",
  103. "@typescript-eslint/no-empty-function": "off"
  104. }
  105. }
  106. }