package.json 1.9 KB

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