package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "_args": [
  3. [
  4. "mem@1.1.0",
  5. "/Users/lihai/jolijoli/pad_spa"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "mem@1.1.0",
  10. "_id": "mem@1.1.0",
  11. "_inBundle": false,
  12. "_integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=",
  13. "_location": "/mem",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "mem@1.1.0",
  19. "name": "mem",
  20. "escapedName": "mem",
  21. "rawSpec": "1.1.0",
  22. "saveSpec": null,
  23. "fetchSpec": "1.1.0"
  24. },
  25. "_requiredBy": [
  26. "/os-locale"
  27. ],
  28. "_resolved": "https://registry.npm.taobao.org/mem/download/mem-1.1.0.tgz",
  29. "_spec": "1.1.0",
  30. "_where": "/Users/lihai/jolijoli/pad_spa",
  31. "author": {
  32. "name": "Sindre Sorhus",
  33. "email": "sindresorhus@gmail.com",
  34. "url": "sindresorhus.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/sindresorhus/mem/issues"
  38. },
  39. "dependencies": {
  40. "mimic-fn": "^1.0.0"
  41. },
  42. "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input",
  43. "devDependencies": {
  44. "ava": "*",
  45. "delay": "^1.1.0",
  46. "xo": "*"
  47. },
  48. "engines": {
  49. "node": ">=4"
  50. },
  51. "files": [
  52. "index.js"
  53. ],
  54. "homepage": "https://github.com/sindresorhus/mem#readme",
  55. "keywords": [
  56. "memoize",
  57. "function",
  58. "mem",
  59. "memoization",
  60. "cache",
  61. "caching",
  62. "optimize",
  63. "performance",
  64. "ttl",
  65. "expire",
  66. "promise"
  67. ],
  68. "license": "MIT",
  69. "name": "mem",
  70. "repository": {
  71. "type": "git",
  72. "url": "git+https://github.com/sindresorhus/mem.git"
  73. },
  74. "scripts": {
  75. "test": "xo && ava"
  76. },
  77. "version": "1.1.0",
  78. "xo": {
  79. "esnext": true
  80. }
  81. }