package.json 828 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "configstore",
  3. "version": "5.0.1",
  4. "description": "Easily load and save config without having to think about where and how",
  5. "license": "BSD-2-Clause",
  6. "repository": "yeoman/configstore",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "config",
  23. "store",
  24. "storage",
  25. "configuration",
  26. "settings",
  27. "preferences",
  28. "json",
  29. "data",
  30. "persist",
  31. "persistent",
  32. "save"
  33. ],
  34. "dependencies": {
  35. "dot-prop": "^5.2.0",
  36. "graceful-fs": "^4.1.2",
  37. "make-dir": "^3.0.0",
  38. "unique-string": "^2.0.0",
  39. "write-file-atomic": "^3.0.0",
  40. "xdg-basedir": "^4.0.0"
  41. },
  42. "devDependencies": {
  43. "ava": "^2.1.0",
  44. "xo": "^0.24.0"
  45. }
  46. }