ea0aab63c6aaed39933e379cee3e73c654161ce6f1759703b688f61d4fd57aa1632012f42077064a8e9283771f9883df0d91c35238c1ebc12339798b8c0b67 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. {
  2. "name": "which-typed-array",
  3. "version": "1.1.19",
  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. "contributors": [
  13. {
  14. "name": "Jordan Harband",
  15. "email": "ljharb@gmail.com",
  16. "url": "http://ljharb.codes"
  17. }
  18. ],
  19. "description": "Which kind of Typed Array is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.",
  20. "license": "MIT",
  21. "main": "index.js",
  22. "types": "./index.d.ts",
  23. "sideEffects": false,
  24. "scripts": {
  25. "prepack": "npmignore --auto --commentLines=autogenerated",
  26. "prepublishOnly": "safe-publish-latest",
  27. "prepublish": "not-in-publish || npm run prepublishOnly",
  28. "pretest": "npm run --silent lint",
  29. "test": "npm run tests-only && npm run test:harmony",
  30. "tests-only": "nyc tape test",
  31. "test:harmony": "nyc node --harmony --es-staging test",
  32. "posttest": "npx npm@'>=10.2' audit --production",
  33. "lint": "eslint --ext=js,mjs .",
  34. "postlint": "tsc -p . && attw -P",
  35. "version": "auto-changelog && git add CHANGELOG.md",
  36. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "git://github.com/inspect-js/which-typed-array.git"
  41. },
  42. "keywords": [
  43. "array",
  44. "TypedArray",
  45. "typed array",
  46. "which",
  47. "typed",
  48. "Int8Array",
  49. "Uint8Array",
  50. "Uint8ClampedArray",
  51. "Int16Array",
  52. "Uint16Array",
  53. "Int32Array",
  54. "Uint32Array",
  55. "Float32Array",
  56. "Float64Array",
  57. "ES6",
  58. "toStringTag",
  59. "Symbol.toStringTag",
  60. "@@toStringTag"
  61. ],
  62. "dependencies": {
  63. "available-typed-arrays": "^1.0.7",
  64. "call-bind": "^1.0.8",
  65. "call-bound": "^1.0.4",
  66. "for-each": "^0.3.5",
  67. "get-proto": "^1.0.1",
  68. "gopd": "^1.2.0",
  69. "has-tostringtag": "^1.0.2"
  70. },
  71. "devDependencies": {
  72. "@arethetypeswrong/cli": "^0.17.4",
  73. "@ljharb/eslint-config": "^21.1.1",
  74. "@ljharb/tsconfig": "^0.3.2",
  75. "@types/call-bind": "^1.0.5",
  76. "@types/for-each": "^0.3.3",
  77. "@types/gopd": "^1.0.3",
  78. "@types/is-callable": "^1.1.2",
  79. "@types/make-arrow-function": "^1.2.2",
  80. "@types/make-generator-function": "^2.0.3",
  81. "@types/tape": "^5.8.1",
  82. "auto-changelog": "^2.5.0",
  83. "encoding": "^0.1.13",
  84. "eslint": "=8.8.0",
  85. "in-publish": "^2.0.1",
  86. "is-callable": "^1.2.7",
  87. "make-arrow-function": "^1.2.0",
  88. "make-generator-function": "^2.0.0",
  89. "npmignore": "^0.3.1",
  90. "nyc": "^10.3.2",
  91. "safe-publish-latest": "^2.0.0",
  92. "tape": "^5.9.0",
  93. "typescript": "next"
  94. },
  95. "testling": {
  96. "files": "test/index.js",
  97. "browsers": [
  98. "iexplore/6.0..latest",
  99. "firefox/3.0..6.0",
  100. "firefox/15.0..latest",
  101. "firefox/nightly",
  102. "chrome/4.0..10.0",
  103. "chrome/20.0..latest",
  104. "chrome/canary",
  105. "opera/10.0..latest",
  106. "opera/next",
  107. "safari/4.0..latest",
  108. "ipad/6.0..latest",
  109. "iphone/6.0..latest",
  110. "android-browser/4.2"
  111. ]
  112. },
  113. "engines": {
  114. "node": ">= 0.4"
  115. },
  116. "auto-changelog": {
  117. "output": "CHANGELOG.md",
  118. "template": "keepachangelog",
  119. "unreleased": false,
  120. "commitLimit": false,
  121. "backfillLimit": false,
  122. "hideCredit": true
  123. },
  124. "publishConfig": {
  125. "ignore": [
  126. ".github/workflows",
  127. "types.d.ts"
  128. ]
  129. }
  130. }