package.json 2.4 KB

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