package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "safe-array-concat",
  3. "version": "1.1.3",
  4. "description": "`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "sideEffects": false,
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "version": "auto-changelog && git add CHANGELOG.md",
  14. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  15. "prelint": "evalmd README.md",
  16. "lint": "eslint --ext=js,mjs .",
  17. "postlint": "tsc && attw -P",
  18. "prepublish": "not-in-publish || npm run prepublishOnly",
  19. "prepublishOnly": "safe-publish-latest",
  20. "pretest": "npm run lint",
  21. "tests-only": "nyc tape test",
  22. "test": "npm run tests-only",
  23. "posttest": "npx npm@'>= 10.2' audit --production"
  24. },
  25. "keywords": [
  26. "safe",
  27. "Array",
  28. "concat",
  29. "push",
  30. "isConcatSpreadable"
  31. ],
  32. "author": "Jordan Harband <ljharb@gmail.com>",
  33. "funding": {
  34. "url": "https://github.com/sponsors/ljharb"
  35. },
  36. "license": "MIT",
  37. "repository": {
  38. "type": "git",
  39. "url": "git+https://github.com/ljharb/safe-array-concat.git"
  40. },
  41. "bugs": {
  42. "url": "https://github.com/ljharb/safe-array-concat/issues"
  43. },
  44. "homepage": "https://github.com/ljharb/safe-array-concat#readme",
  45. "devDependencies": {
  46. "@arethetypeswrong/cli": "^0.17.1",
  47. "@ljharb/eslint-config": "^21.1.1",
  48. "@ljharb/tsconfig": "^0.2.2",
  49. "@types/call-bind": "^1.0.5",
  50. "@types/get-intrinsic": "^1.2.3",
  51. "@types/has-symbols": "^1.0.2",
  52. "@types/isarray": "^2.0.2",
  53. "@types/tape": "^5.6.5",
  54. "auto-changelog": "^2.5.0",
  55. "encoding": "^0.1.13",
  56. "eslint": "=8.8.0",
  57. "evalmd": "^0.0.19",
  58. "in-publish": "^2.0.1",
  59. "mock-property": "^1.1.0",
  60. "npmignore": "^0.3.1",
  61. "nyc": "^10.3.2",
  62. "safe-publish-latest": "^2.0.0",
  63. "set-function-length": "^1.2.2",
  64. "tape": "^5.9.0",
  65. "typescript": "next"
  66. },
  67. "dependencies": {
  68. "call-bind": "^1.0.8",
  69. "call-bound": "^1.0.2",
  70. "get-intrinsic": "^1.2.6",
  71. "has-symbols": "^1.1.0",
  72. "isarray": "^2.0.5"
  73. },
  74. "auto-changelog": {
  75. "output": "CHANGELOG.md",
  76. "template": "keepachangelog",
  77. "unreleased": false,
  78. "commitLimit": false,
  79. "backfillLimit": false,
  80. "hideCredit": true
  81. },
  82. "publishConfig": {
  83. "ignore": [
  84. ".github/workflows"
  85. ]
  86. },
  87. "engines": {
  88. "node": ">=0.4"
  89. }
  90. }