package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "object.hasown",
  3. "version": "1.1.0",
  4. "description": "ES spec-compliant shim for Object.hasOwn",
  5. "main": "index.js",
  6. "exports": {
  7. ".": [
  8. {
  9. "import": "./index.mjs",
  10. "require": "./index.js",
  11. "default": "./index.js"
  12. },
  13. "./index.js"
  14. ],
  15. "./auto": "./auto.js",
  16. "./shim": "./shim.js",
  17. "./polyfill": "./polyfill.js",
  18. "./implementation": "./implementation.js",
  19. "./package.json": "./package.json"
  20. },
  21. "scripts": {
  22. "prepublish": "not-in-publish || npm run prepublishOnly",
  23. "prepublishOnly": "safe-publish-latest",
  24. "lint": "eslint .",
  25. "postlint": "es-shim-api --bound",
  26. "pretest": "npm run lint",
  27. "tests-only": "nyc tape 'test/**/*.js'",
  28. "tests-esm": "nyc node test/index.mjs",
  29. "test": "npm run tests-only && npm run tests-esm",
  30. "posttest": "aud --production",
  31. "version": "auto-changelog && git add CHANGELOG.md",
  32. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "https://github.com/es-shims/Object.hasOwn.git"
  37. },
  38. "keywords": [
  39. "Object",
  40. "hasOwn",
  41. "polyfill",
  42. "shim",
  43. "es-shim API"
  44. ],
  45. "author": "Jordan Harband <ljharb@gmail.com>",
  46. "funding": {
  47. "url": "https://github.com/sponsors/ljharb"
  48. },
  49. "license": "MIT",
  50. "bugs": {
  51. "url": "https://github.com/es-shims/Object.hasOwn/issues"
  52. },
  53. "homepage": "https://github.com/es-shims/Object.hasOwn",
  54. "devDependencies": {
  55. "@es-shims/api": "^2.2.1",
  56. "@ljharb/eslint-config": "^18.0.0",
  57. "aud": "^1.1.5",
  58. "auto-changelog": "^2.3.0",
  59. "call-bind": "^1.0.2",
  60. "eslint": "^7.32.0",
  61. "functions-have-names": "^1.2.2",
  62. "has-strict-mode": "^1.0.1",
  63. "has-symbols": "^1.0.2",
  64. "nyc": "^10.3.2",
  65. "safe-publish-latest": "^1.1.4",
  66. "tape": "^5.3.1"
  67. },
  68. "auto-changelog": {
  69. "output": "CHANGELOG.md",
  70. "template": "keepachangelog",
  71. "unreleased": false,
  72. "commitLimit": false,
  73. "backfillLimit": false,
  74. "hideCredit": true
  75. },
  76. "dependencies": {
  77. "define-properties": "^1.1.3",
  78. "es-abstract": "^1.19.1"
  79. }
  80. }