package.json 762 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "jsonfile",
  3. "version": "6.1.0",
  4. "description": "Easily read/write JSON files.",
  5. "repository": {
  6. "type": "git",
  7. "url": "git@github.com:jprichardson/node-jsonfile.git"
  8. },
  9. "keywords": [
  10. "read",
  11. "write",
  12. "file",
  13. "json",
  14. "fs",
  15. "fs-extra"
  16. ],
  17. "author": "JP Richardson <jprichardson@gmail.com>",
  18. "license": "MIT",
  19. "dependencies": {
  20. "universalify": "^2.0.0"
  21. },
  22. "optionalDependencies": {
  23. "graceful-fs": "^4.1.6"
  24. },
  25. "devDependencies": {
  26. "mocha": "^8.2.0",
  27. "rimraf": "^2.4.0",
  28. "standard": "^16.0.1"
  29. },
  30. "main": "index.js",
  31. "files": [
  32. "index.js",
  33. "utils.js"
  34. ],
  35. "scripts": {
  36. "lint": "standard",
  37. "test": "npm run lint && npm run unit",
  38. "unit": "mocha"
  39. }
  40. }