package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "is-shared-array-buffer",
  3. "version": "1.0.2",
  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. "scripts": {
  20. "prepublishOnly": "safe-publish-latest",
  21. "prepublish": "not-in-publish || npm run prepublishOnly",
  22. "lint": "eslint --ext=.js,.mjs .",
  23. "pretest": "npm run lint",
  24. "tests-only": "nyc tape 'test/**/*.js'",
  25. "test": "npm run tests-only --",
  26. "posttest": "aud --production",
  27. "version": "auto-changelog && git add CHANGELOG.md",
  28. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/inspect-js/is-shared-array-buffer.git"
  33. },
  34. "keywords": [
  35. "javascript",
  36. "ecmascript",
  37. "is",
  38. "sharedarraybuffer",
  39. "shared",
  40. "array",
  41. "buffer"
  42. ],
  43. "bugs": {
  44. "url": "https://github.com/inspect-js/is-shared-array-buffer/issues"
  45. },
  46. "homepage": "https://github.com/inspect-js/is-shared-array-buffer#readme",
  47. "devDependencies": {
  48. "@ljharb/eslint-config": "^20.2.3",
  49. "aud": "^2.0.0",
  50. "auto-changelog": "^2.4.0",
  51. "es-value-fixtures": "^1.2.1",
  52. "eslint": "=8.8.0",
  53. "for-each": "^0.3.3",
  54. "nyc": "^10.3.2",
  55. "object-inspect": "^1.12.0",
  56. "safe-publish-latest": "^2.0.0",
  57. "tape": "^5.5.2"
  58. },
  59. "auto-changelog": {
  60. "output": "CHANGELOG.md",
  61. "template": "keepachangelog",
  62. "unreleased": false,
  63. "commitLimit": false,
  64. "backfillLimit": false,
  65. "hideCredit": true
  66. },
  67. "dependencies": {
  68. "call-bind": "^1.0.2"
  69. }
  70. }