package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "keyv",
  3. "version": "3.1.0",
  4. "description": "Simple key-value storage with support for multiple backends",
  5. "main": "src/index.js",
  6. "scripts": {
  7. "test": "xo && nyc ava test/keyv.js",
  8. "test:full": "xo && nyc ava --serial",
  9. "coverage": "nyc report --reporter=text-lcov | coveralls"
  10. },
  11. "xo": {
  12. "extends": "xo-lukechilds"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/lukechilds/keyv.git"
  17. },
  18. "keywords": [
  19. "key",
  20. "value",
  21. "store",
  22. "cache",
  23. "ttl"
  24. ],
  25. "author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/lukechilds/keyv/issues"
  29. },
  30. "homepage": "https://github.com/lukechilds/keyv",
  31. "dependencies": {
  32. "json-buffer": "3.0.0"
  33. },
  34. "devDependencies": {
  35. "ava": "^0.25.0",
  36. "coveralls": "^3.0.0",
  37. "eslint-config-xo-lukechilds": "^1.0.0",
  38. "@keyv/mongo": "*",
  39. "@keyv/mysql": "*",
  40. "@keyv/postgres": "*",
  41. "@keyv/redis": "*",
  42. "@keyv/sqlite": "*",
  43. "@keyv/test-suite": "*",
  44. "nyc": "^11.0.3",
  45. "this": "^1.0.2",
  46. "timekeeper": "^2.0.0",
  47. "xo": "^0.20.1"
  48. }
  49. }