web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
728 B

  1. {
  2. "name": "load-json-file",
  3. "version": "2.0.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": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "read",
  23. "json",
  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. "strip-bom": "^3.0.0"
  35. },
  36. "devDependencies": {
  37. "ava": "*",
  38. "xo": "*"
  39. },
  40. "xo": {
  41. "esnext": true
  42. }
  43. }