package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "object.getownpropertydescriptors",
  3. "version": "2.1.4",
  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. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "prepublishOnly": "safe-publish-latest",
  15. "pretest": "npm run --silent lint",
  16. "test": "npm run --silent tests-only",
  17. "posttest": "aud --production",
  18. "tests-only": "nyc tape 'test/**/*.js'",
  19. "lint": "eslint --ext=js,mjs .",
  20. "postlint": "es-shim-api --bound"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/es-shims/object.getownpropertydescriptors.git"
  25. },
  26. "keywords": [
  27. "Object.getOwnPropertyDescriptors",
  28. "descriptor",
  29. "property descriptor",
  30. "ES8",
  31. "ES2017",
  32. "shim",
  33. "polyfill",
  34. "getOwnPropertyDescriptor",
  35. "es-shim API"
  36. ],
  37. "dependencies": {
  38. "array.prototype.reduce": "^1.0.4",
  39. "call-bind": "^1.0.2",
  40. "define-properties": "^1.1.4",
  41. "es-abstract": "^1.20.1"
  42. },
  43. "devDependencies": {
  44. "@es-shims/api": "^2.2.3",
  45. "@ljharb/eslint-config": "^21.0.0",
  46. "aud": "^2.0.0",
  47. "auto-changelog": "^2.4.0",
  48. "eslint": "=8.8.0",
  49. "functions-have-names": "^1.2.3",
  50. "has-strict-mode": "^1.0.1",
  51. "mock-property": "^1.0.0",
  52. "npmignore": "^0.3.0",
  53. "nyc": "^10.3.2",
  54. "safe-publish-latest": "^2.0.0",
  55. "tape": "^5.5.3"
  56. },
  57. "testling": {
  58. "files": [
  59. "test/index.js",
  60. "test/shimmed.js"
  61. ],
  62. "browsers": [
  63. "iexplore/9.0..latest",
  64. "firefox/4.0..6.0",
  65. "firefox/15.0..latest",
  66. "firefox/nightly",
  67. "chrome/5.0..10.0",
  68. "chrome/20.0..latest",
  69. "chrome/canary",
  70. "opera/12.0..latest",
  71. "opera/next",
  72. "safari/5.0..latest",
  73. "ipad/6.0..latest",
  74. "iphone/6.0..latest",
  75. "android-browser/4.2"
  76. ]
  77. },
  78. "engines": {
  79. "node": ">= 0.8"
  80. },
  81. "publishConfig": {
  82. "ignore": [
  83. ".github/workflows"
  84. ]
  85. }
  86. }