package.json 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "load-json-file",
  3. "version": "1.1.0",
  4. "description": "Read and parse a JSON file",
  5. "license": "MIT",
  6. "repository": "sindresorhus/load-json-file",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "json",
  23. "read",
  24. "parse",
  25. "file",
  26. "fs",
  27. "graceful",
  28. "load"
  29. ],
  30. "dependencies": {
  31. "graceful-fs": "^4.1.2",
  32. "parse-json": "^2.2.0",
  33. "pify": "^2.0.0",
  34. "pinkie-promise": "^2.0.0",
  35. "strip-bom": "^2.0.0"
  36. },
  37. "devDependencies": {
  38. "ava": "*",
  39. "xo": "*"
  40. },
  41. "xo": {
  42. "ignores": [
  43. "test.js"
  44. ]
  45. },
  46. "__npminstall_done": true,
  47. "_from": "load-json-file@1.1.0",
  48. "_resolved": "https://registry.npmmirror.com/load-json-file/-/load-json-file-1.1.0.tgz"
  49. }