package.json 711 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "jsonfile",
  3. "version": "4.0.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. "optionalDependencies": {
  21. "graceful-fs": "^4.1.6"
  22. },
  23. "devDependencies": {
  24. "mocha": "2.x",
  25. "rimraf": "^2.4.0",
  26. "standard": "^10.0.3"
  27. },
  28. "main": "index.js",
  29. "files": [
  30. "index.js"
  31. ],
  32. "scripts": {
  33. "lint": "standard",
  34. "test": "npm run lint && npm run unit",
  35. "unit": "mocha"
  36. }
  37. }