package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "cache-base",
  3. "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/cache-base",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  9. "(https://github.com/wtgtybhertgeghgtwtg)"
  10. ],
  11. "repository": "jonschlinkert/cache-base",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/cache-base/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "collection-visit": "^1.0.0",
  28. "component-emitter": "^1.2.1",
  29. "get-value": "^2.0.6",
  30. "has-value": "^1.0.0",
  31. "isobject": "^3.0.1",
  32. "set-value": "^2.0.0",
  33. "to-object-path": "^0.3.0",
  34. "union-value": "^1.0.0",
  35. "unset-value": "^1.0.0"
  36. },
  37. "devDependencies": {
  38. "gulp-format-md": "^1.0.0",
  39. "mocha": "^3.4.2"
  40. },
  41. "keywords": [
  42. "base",
  43. "cache",
  44. "config",
  45. "data",
  46. "get",
  47. "has",
  48. "hash",
  49. "hasown",
  50. "object",
  51. "set",
  52. "store"
  53. ],
  54. "verb": {
  55. "run": true,
  56. "toc": false,
  57. "layout": "default",
  58. "tasks": [
  59. "readme"
  60. ],
  61. "plugins": [
  62. "gulp-format-md"
  63. ],
  64. "related": {
  65. "highligh": "base",
  66. "list": [
  67. "base-methods",
  68. "get-value",
  69. "has-value",
  70. "option-cache",
  71. "set-value",
  72. "unset-value"
  73. ]
  74. },
  75. "reflinks": [
  76. "verb"
  77. ],
  78. "lint": {
  79. "reflinks": true
  80. }
  81. }
  82. }