package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "is-array-buffer",
  3. "version": "3.0.2",
  4. "description": "Is this value a JS ArrayBuffer?",
  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. "prepublishOnly": "safe-publish-latest",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "lint": "eslint --ext=.js,.mjs .",
  16. "pretest": "npm run lint",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "test": "npm run tests-only --",
  19. "posttest": "aud --production",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/inspect-js/is-array-buffer.git"
  26. },
  27. "keywords": [
  28. "javascript",
  29. "ecmascript",
  30. "is",
  31. "arraybuffer",
  32. "array",
  33. "buffer"
  34. ],
  35. "author": "Jordan Harband <ljharb@gmail.com>",
  36. "funding": {
  37. "url": "https://github.com/sponsors/ljharb"
  38. },
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/inspect-js/is-array-buffer/issues"
  42. },
  43. "homepage": "https://github.com/inspect-js/is-array-buffer#readme",
  44. "devDependencies": {
  45. "@ljharb/eslint-config": "^21.0.1",
  46. "aud": "^2.0.2",
  47. "auto-changelog": "^2.4.0",
  48. "available-typed-arrays": "^1.0.5",
  49. "es-value-fixtures": "^1.4.2",
  50. "eslint": "=8.8.0",
  51. "for-each": "^0.3.3",
  52. "in-publish": "^2.0.1",
  53. "npmignore": "^0.3.0",
  54. "nyc": "^10.3.2",
  55. "object-inspect": "^1.12.3",
  56. "safe-publish-latest": "^2.0.0",
  57. "tape": "^5.6.3"
  58. },
  59. "auto-changelog": {
  60. "output": "CHANGELOG.md",
  61. "template": "keepachangelog",
  62. "unreleased": false,
  63. "commitLimit": false,
  64. "backfillLimit": false,
  65. "hideCredit": true,
  66. "startingVersion": "2.0.1"
  67. },
  68. "dependencies": {
  69. "call-bind": "^1.0.2",
  70. "get-intrinsic": "^1.2.0",
  71. "is-typed-array": "^1.1.10"
  72. },
  73. "publishConfig": {
  74. "ignore": [
  75. ".github/workflows"
  76. ]
  77. }
  78. }