9431fd7bc06202d2c872796e5525827eda3e24f5c5d9e9a99d0409a01fae6a22242bbcc2a0e4dee109f48768d3984801804a7116d047abe6866f3edded6e7c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "reflect.getprototypeof",
  3. "version": "1.0.10",
  4. "description": "An ES2015 mostly-spec-compliant `Reflect.getPrototypeOf` sham/polyfill/replacement that works in as many engines as possible",
  5. "main": "index.js",
  6. "type": "commonjs",
  7. "exports": {
  8. ".": "./index.js",
  9. "./auto": "./auto.js",
  10. "./polyfill": "./polyfill.js",
  11. "./implementation": "./implementation.js",
  12. "./shim": "./shim.js",
  13. "./package.json": "./package.json"
  14. },
  15. "scripts": {
  16. "prepack": "npmignore --auto --commentLines=autogenerated",
  17. "prepublish": "not-in-publish || npm run prepublishOnly",
  18. "prepublishOnly": "safe-publish-latest",
  19. "prelint": "evalmd README.md",
  20. "lint": "eslint --ext=js,mjs .",
  21. "postlint": "es-shim-api --bound",
  22. "pretest": "npm run lint",
  23. "tests-only": "nyc tape 'test/**/*.js'",
  24. "test": "npm run tests-only",
  25. "posttest": "npx npm@'>=10.2' audit --production",
  26. "version": "auto-changelog && git add CHANGELOG.md",
  27. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/es-shims/Reflect.getPrototypeOf.git"
  32. },
  33. "keywords": [
  34. "Reflect.getPrototypeOf",
  35. "Object.getPrototypeOf",
  36. "proto",
  37. "__proto__",
  38. "[[Prototype]]",
  39. "getPrototypeOf",
  40. "ES5",
  41. "shim",
  42. "polyfill",
  43. "es-shim API",
  44. "browser"
  45. ],
  46. "author": "Jordan Harband <ljharb@gmail.com>",
  47. "funding": {
  48. "url": "https://github.com/sponsors/ljharb"
  49. },
  50. "license": "MIT",
  51. "bugs": {
  52. "url": "https://github.com/es-shims/Reflect.getPrototypeOf/issues"
  53. },
  54. "homepage": "https://github.com/es-shims/Reflect.getPrototypeOf",
  55. "engines": {
  56. "node": ">= 0.4"
  57. },
  58. "dependencies": {
  59. "call-bind": "^1.0.8",
  60. "define-properties": "^1.2.1",
  61. "es-abstract": "^1.23.9",
  62. "es-errors": "^1.3.0",
  63. "es-object-atoms": "^1.0.0",
  64. "get-intrinsic": "^1.2.7",
  65. "get-proto": "^1.0.1",
  66. "which-builtin-type": "^1.2.1"
  67. },
  68. "devDependencies": {
  69. "@es-shims/api": "^2.5.1",
  70. "@ljharb/eslint-config": "^21.1.1",
  71. "auto-changelog": "^2.5.0",
  72. "encoding": "^0.1.13",
  73. "eslint": "=8.8.0",
  74. "evalmd": "^0.0.19",
  75. "functions-have-names": "^1.2.3",
  76. "in-publish": "^2.0.1",
  77. "npmignore": "^0.3.1",
  78. "nyc": "^10.3.2",
  79. "safe-publish-latest": "^2.0.0",
  80. "tape": "^5.9.0"
  81. },
  82. "auto-changelog": {
  83. "output": "CHANGELOG.md",
  84. "template": "keepachangelog",
  85. "unreleased": false,
  86. "commitLimit": false,
  87. "backfillLimit": false,
  88. "hideCredit": true
  89. },
  90. "publishConfig": {
  91. "ignore": [
  92. ".github/workflows"
  93. ]
  94. },
  95. "testling": {
  96. "files": "test/implementation.js"
  97. }
  98. }