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.

78 lines
1.6 KiB

  1. {
  2. "name": "object.fromentries",
  3. "version": "2.0.4",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "ES proposal-spec-compliant Object.fromEntries 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": "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.fromEntries.git"
  23. },
  24. "keywords": [
  25. "Object.fromEntries",
  26. "Object.entries",
  27. "Object.values",
  28. "Object.keys",
  29. "entries",
  30. "values",
  31. "ES7",
  32. "ES8",
  33. "ES2017",
  34. "shim",
  35. "object",
  36. "keys",
  37. "polyfill",
  38. "es-shim API"
  39. ],
  40. "dependencies": {
  41. "call-bind": "^1.0.2",
  42. "define-properties": "^1.1.3",
  43. "es-abstract": "^1.18.0-next.2",
  44. "has": "^1.0.3"
  45. },
  46. "devDependencies": {
  47. "@es-shims/api": "^2.1.2",
  48. "@ljharb/eslint-config": "^17.5.1",
  49. "array-map": "^0.0.0",
  50. "aud": "^1.1.4",
  51. "eslint": "^7.20.0",
  52. "has-strict-mode": "^1.0.1",
  53. "nyc": "^10.3.2",
  54. "safe-publish-latest": "^1.1.4",
  55. "tape": "^5.2.0"
  56. },
  57. "testling": {
  58. "files": "test/index.js",
  59. "browsers": [
  60. "iexplore/9.0..latest",
  61. "firefox/4.0..6.0",
  62. "firefox/15.0..latest",
  63. "firefox/nightly",
  64. "chrome/4.0..10.0",
  65. "chrome/20.0..latest",
  66. "chrome/canary",
  67. "opera/11.6..latest",
  68. "opera/next",
  69. "safari/5.0..latest",
  70. "ipad/6.0..latest",
  71. "iphone/6.0..latest",
  72. "android-browser/4.2"
  73. ]
  74. },
  75. "engines": {
  76. "node": ">= 0.4"
  77. }
  78. }