package.json 885 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "write-json-file",
  3. "version": "2.3.0",
  4. "description": "Stringify and write JSON to a file atomically",
  5. "license": "MIT",
  6. "repository": "sindresorhus/write-json-file",
  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. "write",
  23. "json",
  24. "stringify",
  25. "file",
  26. "fs",
  27. "graceful",
  28. "stable",
  29. "sort",
  30. "newline",
  31. "indent",
  32. "atomic",
  33. "atomically"
  34. ],
  35. "dependencies": {
  36. "detect-indent": "^5.0.0",
  37. "graceful-fs": "^4.1.2",
  38. "make-dir": "^1.0.0",
  39. "pify": "^3.0.0",
  40. "sort-keys": "^2.0.0",
  41. "write-file-atomic": "^2.0.0"
  42. },
  43. "devDependencies": {
  44. "ava": "*",
  45. "tempfile": "^2.0.0",
  46. "xo": "*"
  47. }
  48. }