package.json 702 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "jsonfile",
  3. "version": "2.4.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. "mock-fs": "^3.8.0",
  26. "rimraf": "^2.4.0",
  27. "standard": "^6.0.8"
  28. },
  29. "main": "index.js",
  30. "scripts": {
  31. "lint": "standard",
  32. "test": "npm run lint && npm run unit",
  33. "unit": "mocha"
  34. }
  35. }