package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "is-array-buffer",
  3. "version": "3.0.4",
  4. "description": "Is this value a JS ArrayBuffer?",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "types": "./index.d.ts",
  11. "sideEffects": false,
  12. "scripts": {
  13. "prepack": "npmignore --auto --commentLines=autogenerated",
  14. "prepublishOnly": "safe-publish-latest",
  15. "prepublish": "not-in-publish || npm run prepublishOnly",
  16. "lint": "eslint --ext=.js,.mjs .",
  17. "postlint": "tsc -p .",
  18. "pretest": "npm run lint",
  19. "tests-only": "nyc tape 'test/**/*.js'",
  20. "test": "npm run tests-only --",
  21. "posttest": "aud --production",
  22. "version": "auto-changelog && git add CHANGELOG.md",
  23. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/inspect-js/is-array-buffer.git"
  28. },
  29. "keywords": [
  30. "javascript",
  31. "ecmascript",
  32. "is",
  33. "arraybuffer",
  34. "array",
  35. "buffer"
  36. ],
  37. "author": "Jordan Harband <ljharb@gmail.com>",
  38. "funding": {
  39. "url": "https://github.com/sponsors/ljharb"
  40. },
  41. "license": "MIT",
  42. "bugs": {
  43. "url": "https://github.com/inspect-js/is-array-buffer/issues"
  44. },
  45. "homepage": "https://github.com/inspect-js/is-array-buffer#readme",
  46. "devDependencies": {
  47. "@ljharb/eslint-config": "^21.1.0",
  48. "@types/call-bind": "^1.0.5",
  49. "@types/es-value-fixtures": "^1.4.4",
  50. "@types/for-each": "^0.3.3",
  51. "@types/get-intrinsic": "^1.2.2",
  52. "@types/object-inspect": "^1.8.4",
  53. "@types/tape": "^5.6.4",
  54. "aud": "^2.0.4",
  55. "auto-changelog": "^2.4.0",
  56. "available-typed-arrays": "^1.0.6",
  57. "es-value-fixtures": "^1.4.2",
  58. "eslint": "=8.8.0",
  59. "for-each": "^0.3.3",
  60. "in-publish": "^2.0.1",
  61. "npmignore": "^0.3.1",
  62. "nyc": "^10.3.2",
  63. "object-inspect": "^1.13.1",
  64. "safe-publish-latest": "^2.0.0",
  65. "tape": "^5.7.4",
  66. "typescript": "next"
  67. },
  68. "auto-changelog": {
  69. "output": "CHANGELOG.md",
  70. "template": "keepachangelog",
  71. "unreleased": false,
  72. "commitLimit": false,
  73. "backfillLimit": false,
  74. "hideCredit": true,
  75. "startingVersion": "2.0.1"
  76. },
  77. "dependencies": {
  78. "call-bind": "^1.0.2",
  79. "get-intrinsic": "^1.2.1"
  80. },
  81. "publishConfig": {
  82. "ignore": [
  83. ".github/workflows"
  84. ]
  85. },
  86. "engines": {
  87. "node": ">= 0.4"
  88. }
  89. }