package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "safe-array-concat",
  3. "version": "1.0.1",
  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. "scripts": {
  11. "prepack": "npmignore --auto --commentLines=autogenerated",
  12. "version": "auto-changelog && git add CHANGELOG.md",
  13. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  14. "lint": "eslint --ext=js,mjs .",
  15. "postlint": "evalmd README.md",
  16. "prepublish": "not-in-publish || npm run prepublishOnly",
  17. "prepublishOnly": "safe-publish-latest",
  18. "pretest": "npm run lint",
  19. "tests-only": "nyc tape test",
  20. "test": "npm run tests-only",
  21. "posttest": "aud --production"
  22. },
  23. "keywords": [
  24. "safe",
  25. "Array",
  26. "concat",
  27. "push",
  28. "isConcatSpreadable"
  29. ],
  30. "author": "Jordan Harband <ljharb@gmail.com>",
  31. "funding": {
  32. "url": "https://github.com/sponsors/ljharb"
  33. },
  34. "license": "MIT",
  35. "repository": {
  36. "type": "git",
  37. "url": "git+https://github.com/ljharb/safe-array-concat.git"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/ljharb/safe-array-concat/issues"
  41. },
  42. "homepage": "https://github.com/ljharb/safe-array-concat#readme",
  43. "devDependencies": {
  44. "@ljharb/eslint-config": "^21.1.0",
  45. "aud": "^2.0.3",
  46. "auto-changelog": "^2.4.0",
  47. "eslint": "=8.8.0",
  48. "evalmd": "^0.0.19",
  49. "in-publish": "^2.0.1",
  50. "mock-property": "^1.0.0",
  51. "npmignore": "^0.3.0",
  52. "nyc": "^10.3.2",
  53. "safe-publish-latest": "^2.0.0",
  54. "tape": "^5.6.6"
  55. },
  56. "dependencies": {
  57. "call-bind": "^1.0.2",
  58. "get-intrinsic": "^1.2.1",
  59. "has-symbols": "^1.0.3",
  60. "isarray": "^2.0.5"
  61. },
  62. "auto-changelog": {
  63. "output": "CHANGELOG.md",
  64. "template": "keepachangelog",
  65. "unreleased": false,
  66. "commitLimit": false,
  67. "backfillLimit": false,
  68. "hideCredit": true
  69. },
  70. "publishConfig": {
  71. "ignore": [
  72. ".github/workflows"
  73. ]
  74. },
  75. "engines": {
  76. "node": ">=0.4"
  77. }
  78. }