package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "is-shared-array-buffer",
  3. "version": "1.0.3",
  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 .",
  26. "pretest": "npm run lint",
  27. "tests-only": "nyc tape 'test/**/*.js'",
  28. "test": "npm run tests-only --",
  29. "posttest": "aud --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. "@ljharb/eslint-config": "^21.1.0",
  52. "@types/call-bind": "^1.0.5",
  53. "@types/es-value-fixtures": "^1.4.4",
  54. "@types/for-each": "^0.3.3",
  55. "@types/node": "^20.11.19",
  56. "@types/object-inspect": "^1.8.4",
  57. "@types/tape": "^5.6.4",
  58. "aud": "^2.0.4",
  59. "auto-changelog": "^2.4.0",
  60. "available-typed-arrays": "^1.0.7",
  61. "es-value-fixtures": "^1.4.2",
  62. "eslint": "=8.8.0",
  63. "for-each": "^0.3.3",
  64. "in-publish": "^2.0.1",
  65. "npmignore": "^0.3.1",
  66. "nyc": "^10.3.2",
  67. "object-inspect": "^1.13.1",
  68. "safe-publish-latest": "^2.0.0",
  69. "tape": "^5.7.5",
  70. "typescript": "next"
  71. },
  72. "auto-changelog": {
  73. "output": "CHANGELOG.md",
  74. "template": "keepachangelog",
  75. "unreleased": false,
  76. "commitLimit": false,
  77. "backfillLimit": false,
  78. "hideCredit": true
  79. },
  80. "dependencies": {
  81. "call-bind": "^1.0.7"
  82. },
  83. "publishConfig": {
  84. "ignore": [
  85. ".github/workflows"
  86. ]
  87. },
  88. "engines": {
  89. "node": ">= 0.4"
  90. }
  91. }