package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "safe-array-concat",
  3. "version": "1.1.2",
  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": "npm run tsc",
  16. "lint": "eslint --ext=js,mjs .",
  17. "tsc": "tsc -p .",
  18. "posttsc": "attw -P",
  19. "postlint": "evalmd README.md",
  20. "prepublish": "not-in-publish || npm run prepublishOnly",
  21. "prepublishOnly": "safe-publish-latest",
  22. "pretest": "npm run lint",
  23. "tests-only": "nyc tape test",
  24. "test": "npm run tests-only",
  25. "posttest": "aud --production"
  26. },
  27. "keywords": [
  28. "safe",
  29. "Array",
  30. "concat",
  31. "push",
  32. "isConcatSpreadable"
  33. ],
  34. "author": "Jordan Harband <ljharb@gmail.com>",
  35. "funding": {
  36. "url": "https://github.com/sponsors/ljharb"
  37. },
  38. "license": "MIT",
  39. "repository": {
  40. "type": "git",
  41. "url": "git+https://github.com/ljharb/safe-array-concat.git"
  42. },
  43. "bugs": {
  44. "url": "https://github.com/ljharb/safe-array-concat/issues"
  45. },
  46. "homepage": "https://github.com/ljharb/safe-array-concat#readme",
  47. "devDependencies": {
  48. "@arethetypeswrong/cli": "^0.15.1",
  49. "@ljharb/eslint-config": "^21.1.0",
  50. "@ljharb/tsconfig": "^0.2.0",
  51. "@types/call-bind": "^1.0.5",
  52. "@types/get-intrinsic": "^1.2.2",
  53. "@types/has-symbols": "^1.0.2",
  54. "@types/isarray": "^2.0.2",
  55. "@types/mock-property": "^1.0.2",
  56. "@types/tape": "^5.6.4",
  57. "aud": "^2.0.4",
  58. "auto-changelog": "^2.4.0",
  59. "eslint": "=8.8.0",
  60. "evalmd": "^0.0.19",
  61. "in-publish": "^2.0.1",
  62. "mock-property": "^1.0.3",
  63. "npmignore": "^0.3.1",
  64. "nyc": "^10.3.2",
  65. "safe-publish-latest": "^2.0.0",
  66. "set-function-length": "^1.2.2",
  67. "tape": "^5.7.5",
  68. "typescript": "next"
  69. },
  70. "dependencies": {
  71. "call-bind": "^1.0.7",
  72. "get-intrinsic": "^1.2.4",
  73. "has-symbols": "^1.0.3",
  74. "isarray": "^2.0.5"
  75. },
  76. "auto-changelog": {
  77. "output": "CHANGELOG.md",
  78. "template": "keepachangelog",
  79. "unreleased": false,
  80. "commitLimit": false,
  81. "backfillLimit": false,
  82. "hideCredit": true
  83. },
  84. "publishConfig": {
  85. "ignore": [
  86. ".github/workflows"
  87. ]
  88. },
  89. "engines": {
  90. "node": ">=0.4"
  91. }
  92. }