package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "stop-iteration-iterator",
  3. "version": "1.0.0",
  4. "description": "Firefox 17-26 iterators throw a StopIteration object to indicate \"done\". This normalizes it.",
  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. "lint": "eslint --ext=js,mjs .",
  15. "pretest": "npm run lint",
  16. "tests-only": "nyc tape 'test/**/*.js'",
  17. "test": "npm run tests-only",
  18. "posttest": "aud --production",
  19. "version": "auto-changelog && git add CHANGELOG.md",
  20. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/ljharb/stop-iteration-iterator.git"
  25. },
  26. "keywords": [
  27. "stopiteration",
  28. "iterator",
  29. "firefox"
  30. ],
  31. "author": "Jordan Harband <ljharb@gmail.com>",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/ljharb/stop-iteration-iterator/issues"
  35. },
  36. "homepage": "https://github.com/ljharb/stop-iteration-iterator#readme",
  37. "dependencies": {
  38. "internal-slot": "^1.0.4"
  39. },
  40. "devDependencies": {
  41. "@ljharb/eslint-config": "^21.0.1",
  42. "aud": "^2.0.2",
  43. "auto-changelog": "^2.4.0",
  44. "eslint": "=8.8.0",
  45. "npmignore": "^0.3.0",
  46. "nyc": "^10.3.2",
  47. "safe-publish-latest": "^2.0.0",
  48. "tape": "^5.6.1"
  49. },
  50. "engines": {
  51. "node": ">= 0.4"
  52. },
  53. "testling": {
  54. "files": "test/index.js"
  55. },
  56. "auto-changelog": {
  57. "output": "CHANGELOG.md",
  58. "template": "keepachangelog",
  59. "unreleased": false,
  60. "commitLimit": false,
  61. "backfillLimit": false
  62. },
  63. "publishConfig": {
  64. "ignore": [
  65. ".github/workflows"
  66. ]
  67. }
  68. }