c0fff54696503c462a016fd07e1b99a3b3aefdbcf03d075757784e4d73bf6d9776ac5231f973de3d3da3834aae818e596e612e528bef8c08f9b2f2d49fd552 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "typed-array-buffer",
  3. "version": "1.0.3",
  4. "description": "Get the ArrayBuffer out of a TypedArray, robustly.",
  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. "postlint": "tsc && attw -P",
  17. "pretest": "npm run lint",
  18. "tests-only": "nyc tape 'test/**/*.js'",
  19. "test": "npm run tests-only",
  20. "posttest": "npx npm@'>= 10.2' audit --production",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/inspect-js/typed-array-buffer.git"
  27. },
  28. "keywords": [
  29. "typed array",
  30. "arraybuffer",
  31. "buffer"
  32. ],
  33. "author": "Jordan Harband <ljharb@gmail.com>",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/inspect-js/typed-array-buffer/issues"
  37. },
  38. "homepage": "https://github.com/inspect-js/typed-array-buffer#readme",
  39. "dependencies": {
  40. "call-bound": "^1.0.3",
  41. "es-errors": "^1.3.0",
  42. "is-typed-array": "^1.1.14"
  43. },
  44. "devDependencies": {
  45. "@arethetypeswrong/cli": "^0.17.1",
  46. "@ljharb/eslint-config": "^21.1.1",
  47. "@ljharb/tsconfig": "^0.2.2",
  48. "@types/es-value-fixtures": "^1.4.4",
  49. "@types/for-each": "^0.3.3",
  50. "@types/object-inspect": "^1.13.0",
  51. "@types/tape": "^5.8.0",
  52. "auto-changelog": "^2.5.0",
  53. "available-typed-arrays": "^1.0.7",
  54. "encoding": "^0.1.13",
  55. "es-value-fixtures": "^1.5.0",
  56. "eslint": "=8.8.0",
  57. "for-each": "^0.3.3",
  58. "in-publish": "^2.0.1",
  59. "npmignore": "^0.3.1",
  60. "nyc": "^10.3.2",
  61. "object-inspect": "^1.13.3",
  62. "safe-publish-latest": "^2.0.0",
  63. "tape": "^5.9.0",
  64. "typescript": "next"
  65. },
  66. "engines": {
  67. "node": ">= 0.4"
  68. },
  69. "auto-changelog": {
  70. "output": "CHANGELOG.md",
  71. "template": "keepachangelog",
  72. "unreleased": false,
  73. "commitLimit": false,
  74. "backfillLimit": false,
  75. "hideCredit": true
  76. },
  77. "publishConfig": {
  78. "ignore": [
  79. ".github/workflows"
  80. ]
  81. }
  82. }