package.json 827 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "configstore",
  3. "version": "3.1.2",
  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": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "config",
  23. "store",
  24. "storage",
  25. "conf",
  26. "configuration",
  27. "settings",
  28. "preferences",
  29. "json",
  30. "data",
  31. "persist",
  32. "persistent",
  33. "save"
  34. ],
  35. "dependencies": {
  36. "dot-prop": "^4.1.0",
  37. "graceful-fs": "^4.1.2",
  38. "make-dir": "^1.0.0",
  39. "unique-string": "^1.0.0",
  40. "write-file-atomic": "^2.0.0",
  41. "xdg-basedir": "^3.0.0"
  42. },
  43. "devDependencies": {
  44. "ava": "*",
  45. "xo": "*"
  46. }
  47. }