package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "es-shim-unscopables",
  3. "version": "1.1.0",
  4. "description": "Helper package to shim a method into `Array.prototype[Symbol.unscopables]`",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "scripts": {
  11. "prepack": "npmignore --auto --commentLines=autogenerated",
  12. "prepublish": "not-in-publish || npm run prepublishOnly",
  13. "prepublishOnly": "safe-publish-latest",
  14. "prelint-disabled": "evalmd README.md",
  15. "lint": "eslint --ext=.js,.mjs .",
  16. "postlint": "tsc && attw -P",
  17. "pretest": "npm run lint",
  18. "tests-only": "nyc tape 'test/**/*.js'",
  19. "test": "npm run tests-only",
  20. "posttest": "npx npm@\">= 10.2\" audit --production",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/ljharb/es-shim-unscopables.git"
  27. },
  28. "author": "Jordan Harband <ljharb@gmail.com>",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/ljharb/es-shim-unscopables/issues"
  32. },
  33. "homepage": "https://github.com/ljharb/es-shim-unscopables#readme",
  34. "devDependencies": {
  35. "@arethetypeswrong/cli": "^0.17.3",
  36. "@ljharb/eslint-config": "^21.1.1",
  37. "@ljharb/tsconfig": "^0.2.3",
  38. "@types/object-inspect": "^1.13.0",
  39. "@types/tape": "^5.8.1",
  40. "auto-changelog": "^2.5.0",
  41. "encoding": "^0.1.13",
  42. "es-value-fixtures": "^1.7.1",
  43. "eslint": "=8.8.0",
  44. "evalmd": "^0.0.19",
  45. "for-each": "^0.3.5",
  46. "in-publish": "^2.0.1",
  47. "npmignore": "^0.3.1",
  48. "nyc": "^10.3.2",
  49. "object-inspect": "^1.13.4",
  50. "safe-publish-latest": "^2.0.0",
  51. "tape": "^5.9.0",
  52. "typescript": "^5.8.0-dev.20250211"
  53. },
  54. "dependencies": {
  55. "hasown": "^2.0.2"
  56. },
  57. "publishConfig": {
  58. "ignore": [
  59. ".github/workflows"
  60. ]
  61. },
  62. "engines": {
  63. "node": ">= 0.4"
  64. }
  65. }