package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "typed-array-buffer",
  3. "version": "1.0.2",
  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. "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/ljharb/typed-array-buffer.git"
  26. },
  27. "keywords": [
  28. "typed array",
  29. "arraybuffer",
  30. "buffer"
  31. ],
  32. "author": "Jordan Harband <ljharb@gmail.com>",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/ljharb/typed-array-buffer/issues"
  36. },
  37. "homepage": "https://github.com/ljharb/typed-array-buffer#readme",
  38. "dependencies": {
  39. "call-bind": "^1.0.7",
  40. "es-errors": "^1.3.0",
  41. "is-typed-array": "^1.1.13"
  42. },
  43. "devDependencies": {
  44. "@ljharb/eslint-config": "^21.1.0",
  45. "@types/call-bind": "^1.0.5",
  46. "@types/es-value-fixtures": "^1.4.4",
  47. "@types/for-each": "^0.3.3",
  48. "@types/object-inspect": "^1.8.4",
  49. "@types/tape": "^5.6.4",
  50. "aud": "^2.0.4",
  51. "auto-changelog": "^2.4.0",
  52. "available-typed-arrays": "^1.0.7",
  53. "es-value-fixtures": "^1.4.2",
  54. "eslint": "=8.8.0",
  55. "for-each": "^0.3.3",
  56. "in-publish": "^2.0.1",
  57. "npmignore": "^0.3.1",
  58. "nyc": "^10.3.2",
  59. "object-inspect": "^1.13.1",
  60. "safe-publish-latest": "^2.0.0",
  61. "tape": "^5.7.5",
  62. "typescript": "next"
  63. },
  64. "engines": {
  65. "node": ">= 0.4"
  66. },
  67. "auto-changelog": {
  68. "output": "CHANGELOG.md",
  69. "template": "keepachangelog",
  70. "unreleased": false,
  71. "commitLimit": false,
  72. "backfillLimit": false,
  73. "hideCredit": true
  74. },
  75. "publishConfig": {
  76. "ignore": [
  77. ".github/workflows"
  78. ]
  79. }
  80. }