package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "object.getownpropertydescriptors",
  3. "version": "2.1.3",
  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": "not-in-publish || npm run prepublishOnly",
  13. "prepublishOnly": "safe-publish-latest",
  14. "pretest": "npm run --silent lint",
  15. "test": "npm run --silent tests-only",
  16. "posttest": "npx aud --production",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "lint": "eslint .",
  19. "postlint": "es-shim-api --bound"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/es-shims/object.getownpropertydescriptors.git"
  24. },
  25. "keywords": [
  26. "Object.getOwnPropertyDescriptors",
  27. "descriptor",
  28. "property descriptor",
  29. "ES8",
  30. "ES2017",
  31. "shim",
  32. "polyfill",
  33. "getOwnPropertyDescriptor",
  34. "es-shim API"
  35. ],
  36. "dependencies": {
  37. "call-bind": "^1.0.2",
  38. "define-properties": "^1.1.3",
  39. "es-abstract": "^1.19.1"
  40. },
  41. "devDependencies": {
  42. "@es-shims/api": "^2.2.1",
  43. "@ljharb/eslint-config": "^18.0.0",
  44. "aud": "^1.1.5",
  45. "eslint": "^7.32.0",
  46. "functions-have-names": "^1.2.2",
  47. "has-strict-mode": "^1.0.1",
  48. "nyc": "^10.3.2",
  49. "safe-publish-latest": "^1.1.4",
  50. "tape": "^5.3.1"
  51. },
  52. "testling": {
  53. "files": [
  54. "test/index.js",
  55. "test/shimmed.js"
  56. ],
  57. "browsers": [
  58. "iexplore/9.0..latest",
  59. "firefox/4.0..6.0",
  60. "firefox/15.0..latest",
  61. "firefox/nightly",
  62. "chrome/5.0..10.0",
  63. "chrome/20.0..latest",
  64. "chrome/canary",
  65. "opera/12.0..latest",
  66. "opera/next",
  67. "safari/5.0..latest",
  68. "ipad/6.0..latest",
  69. "iphone/6.0..latest",
  70. "android-browser/4.2"
  71. ]
  72. },
  73. "engines": {
  74. "node": ">= 0.8"
  75. }
  76. }