package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "for-each",
  3. "version": "0.3.5",
  4. "description": "A better forEach",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/Raynos/for-each.git"
  10. },
  11. "funding": {
  12. "url": "https://github.com/sponsors/ljharb"
  13. },
  14. "main": "index",
  15. "homepage": "https://github.com/Raynos/for-each",
  16. "contributors": [
  17. {
  18. "name": "Jake Verbaten"
  19. },
  20. {
  21. "name": "Jordan Harband",
  22. "url": "https://github.com/ljharb"
  23. }
  24. ],
  25. "bugs": {
  26. "url": "https://github.com/Raynos/for-each/issues",
  27. "email": "raynos2@gmail.com"
  28. },
  29. "license": "MIT",
  30. "scripts": {
  31. "prepack": "npmignore --auto --commentLines=autogenerated",
  32. "pretest": "npm run lint",
  33. "test": "npm run tests-only",
  34. "tests-only": "nyc tape 'test/*.js'",
  35. "posttest": "npx npm@\">= 10.2\" audit --production",
  36. "lint": "eslint --ext=js,mjs .",
  37. "postlint": "tsc && attw -P",
  38. "version": "auto-changelog && git add CHANGELOG.md",
  39. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  40. },
  41. "dependencies": {
  42. "is-callable": "^1.2.7"
  43. },
  44. "devDependencies": {
  45. "@arethetypeswrong/cli": "^0.17.3",
  46. "@ljharb/eslint-config": "^21.1.1",
  47. "@ljharb/tsconfig": "^0.2.3",
  48. "@types/is-callable": "^1.1.2",
  49. "@types/tape": "^5.8.1",
  50. "auto-changelog": "^2.5.0",
  51. "eslint": "=8.8.0",
  52. "npmignore": "^0.3.1",
  53. "nyc": "^10.3.2",
  54. "tape": "^5.9.0",
  55. "typescript": "next"
  56. },
  57. "testling": {
  58. "files": "test/test.js"
  59. },
  60. "engines": {
  61. "node": ">= 0.4"
  62. },
  63. "auto-changelog": {
  64. "output": "CHANGELOG.md",
  65. "template": "keepachangelog",
  66. "unreleased": false,
  67. "commitLimit": false,
  68. "backfillLimit": false,
  69. "hideCredit": true
  70. },
  71. "publishConfig": {
  72. "ignore": [
  73. ".github/workflows"
  74. ]
  75. }
  76. }