web 3d图形渲染器

79 lines
1.6 KiB

  1. {
  2. "name": "object.values",
  3. "version": "1.1.3",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "ES2017 spec-compliant Object.values shim.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "safe-publish-latest",
  13. "pretest": "npm run lint",
  14. "test": "npm run tests-only",
  15. "posttest": "npx aud --production",
  16. "tests-only": "nyc tape 'test/**/*.js'",
  17. "lint": "eslint .",
  18. "postlint": "es-shim-api --bound"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/es-shims/Object.values.git"
  23. },
  24. "keywords": [
  25. "Object.values",
  26. "Object.keys",
  27. "Object.entries",
  28. "values",
  29. "ES7",
  30. "ES8",
  31. "ES2017",
  32. "shim",
  33. "object",
  34. "keys",
  35. "entries",
  36. "polyfill",
  37. "es-shim API"
  38. ],
  39. "dependencies": {
  40. "call-bind": "^1.0.2",
  41. "define-properties": "^1.1.3",
  42. "es-abstract": "^1.18.0-next.2",
  43. "has": "^1.0.3"
  44. },
  45. "devDependencies": {
  46. "@es-shims/api": "^2.1.2",
  47. "@ljharb/eslint-config": "^17.5.1",
  48. "array-map": "^0.0.0",
  49. "aud": "^1.1.4",
  50. "eslint": "^7.20.0",
  51. "functions-have-names": "^1.2.2",
  52. "has-strict-mode": "^1.0.1",
  53. "nyc": "^10.3.2",
  54. "object-keys": "^1.1.1",
  55. "safe-publish-latest": "^1.1.4",
  56. "tape": "^5.2.0"
  57. },
  58. "testling": {
  59. "files": "test/index.js",
  60. "browsers": [
  61. "iexplore/9.0..latest",
  62. "firefox/4.0..6.0",
  63. "firefox/15.0..latest",
  64. "firefox/nightly",
  65. "chrome/4.0..10.0",
  66. "chrome/20.0..latest",
  67. "chrome/canary",
  68. "opera/11.6..latest",
  69. "opera/next",
  70. "safari/5.0..latest",
  71. "ipad/6.0..latest",
  72. "iphone/6.0..latest",
  73. "android-browser/4.2"
  74. ]
  75. },
  76. "engines": {
  77. "node": ">= 0.4"
  78. }
  79. }