package.json 1.6 KB

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