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.

75 lines
1.7 KiB

  1. {
  2. "name": "object.getownpropertydescriptors",
  3. "version": "2.1.2",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "safe-publish-latest",
  13. "pretest": "npm run --silent lint",
  14. "test": "npm run --silent 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.getownpropertydescriptors.git"
  23. },
  24. "keywords": [
  25. "Object.getOwnPropertyDescriptors",
  26. "descriptor",
  27. "property descriptor",
  28. "ES8",
  29. "ES2017",
  30. "shim",
  31. "polyfill",
  32. "getOwnPropertyDescriptor",
  33. "es-shim API"
  34. ],
  35. "dependencies": {
  36. "call-bind": "^1.0.2",
  37. "define-properties": "^1.1.3",
  38. "es-abstract": "^1.18.0-next.2"
  39. },
  40. "devDependencies": {
  41. "@es-shims/api": "^2.1.2",
  42. "@ljharb/eslint-config": "^17.5.1",
  43. "aud": "^1.1.4",
  44. "eslint": "^7.20.0",
  45. "functions-have-names": "^1.2.2",
  46. "has-strict-mode": "^1.0.1",
  47. "nyc": "^10.3.2",
  48. "safe-publish-latest": "^1.1.4",
  49. "tape": "^5.2.0"
  50. },
  51. "testling": {
  52. "files": [
  53. "test/index.js",
  54. "test/shimmed.js"
  55. ],
  56. "browsers": [
  57. "iexplore/9.0..latest",
  58. "firefox/4.0..6.0",
  59. "firefox/15.0..latest",
  60. "firefox/nightly",
  61. "chrome/5.0..10.0",
  62. "chrome/20.0..latest",
  63. "chrome/canary",
  64. "opera/12.0..latest",
  65. "opera/next",
  66. "safari/5.0..latest",
  67. "ipad/6.0..latest",
  68. "iphone/6.0..latest",
  69. "android-browser/4.2"
  70. ]
  71. },
  72. "engines": {
  73. "node": ">= 0.8"
  74. }
  75. }