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.

73 lines
1.6 KiB

  1. {
  2. "name": "object-inspect",
  3. "version": "1.9.0",
  4. "description": "string representations of objects in node and the browser",
  5. "main": "index.js",
  6. "devDependencies": {
  7. "@ljharb/eslint-config": "^17.3.0",
  8. "aud": "^1.1.3",
  9. "core-js": "^2.6.12",
  10. "eslint": "^7.14.0",
  11. "for-each": "^0.3.3",
  12. "nyc": "^10.3.2",
  13. "safe-publish-latest": "^1.1.4",
  14. "string.prototype.repeat": "^1.0.0",
  15. "tape": "^5.0.1"
  16. },
  17. "scripts": {
  18. "prepublish": "safe-publish-latest",
  19. "pretest": "npm run lint",
  20. "lint": "eslint .",
  21. "test": "npm run tests-only",
  22. "tests-only": "nyc npm run tests-only:tape",
  23. "pretests-only:tape": "node test-core-js",
  24. "tests-only:tape": "tape 'test/*.js'",
  25. "posttest": "npx aud --production"
  26. },
  27. "testling": {
  28. "files": [
  29. "test/*.js",
  30. "test/browser/*.js"
  31. ],
  32. "browsers": [
  33. "ie/6..latest",
  34. "chrome/latest",
  35. "firefox/latest",
  36. "safari/latest",
  37. "opera/latest",
  38. "iphone/latest",
  39. "ipad/latest",
  40. "android/latest"
  41. ]
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "git://github.com/inspect-js/object-inspect.git"
  46. },
  47. "homepage": "https://github.com/inspect-js/object-inspect",
  48. "keywords": [
  49. "inspect",
  50. "util.inspect",
  51. "object",
  52. "stringify",
  53. "pretty"
  54. ],
  55. "author": {
  56. "name": "James Halliday",
  57. "email": "mail@substack.net",
  58. "url": "http://substack.net"
  59. },
  60. "funding": {
  61. "url": "https://github.com/sponsors/ljharb"
  62. },
  63. "license": "MIT",
  64. "browser": {
  65. "./util.inspect.js": false
  66. },
  67. "greenkeeper": {
  68. "ignore": [
  69. "nyc",
  70. "core-js"
  71. ]
  72. }
  73. }