package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "available-typed-arrays",
  3. "version": "1.0.7",
  4. "description": "Returns an array of Typed Array names that are available in the current environment",
  5. "main": "index.js",
  6. "type": "commonjs",
  7. "exports": {
  8. ".": "./index.js",
  9. "./package.json": "./package.json"
  10. },
  11. "types": "./index.d.ts",
  12. "sideEffects": false,
  13. "scripts": {
  14. "prepack": "npmignore --auto --commentLines=autogenerated",
  15. "prepublish": "not-in-publish || npm run prepublishOnly",
  16. "prepublishOnly": "safe-publish-latest",
  17. "prelint": "evalmd README.md",
  18. "lint": "eslint --ext=js,mjs .",
  19. "postlint": "tsc -p .",
  20. "pretest": "npm run lint",
  21. "tests-only": "nyc tape 'test/**/*.js'",
  22. "test:harmony": "nyc node --harmony --es-staging test",
  23. "test": "npm run tests-only && npm run test:harmony",
  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/available-typed-arrays.git"
  31. },
  32. "keywords": [
  33. "typed",
  34. "arrays",
  35. "Float32Array",
  36. "Float64Array",
  37. "Int8Array",
  38. "Int16Array",
  39. "Int32Array",
  40. "Uint8Array",
  41. "Uint8ClampedArray",
  42. "Uint16Array",
  43. "Uint32Array",
  44. "BigInt64Array",
  45. "BigUint64Array"
  46. ],
  47. "author": "Jordan Harband <ljharb@gmail.com>",
  48. "funding": {
  49. "url": "https://github.com/sponsors/ljharb"
  50. },
  51. "license": "MIT",
  52. "bugs": {
  53. "url": "https://github.com/inspect-js/available-typed-arrays/issues"
  54. },
  55. "homepage": "https://github.com/inspect-js/available-typed-arrays#readme",
  56. "engines": {
  57. "node": ">= 0.4"
  58. },
  59. "devDependencies": {
  60. "@ljharb/eslint-config": "^21.1.0",
  61. "@types/array.prototype.every": "^1.1.1",
  62. "@types/isarray": "^2.0.2",
  63. "@types/tape": "^5.6.4",
  64. "array.prototype.every": "^1.1.5",
  65. "aud": "^2.0.4",
  66. "auto-changelog": "^2.4.0",
  67. "eslint": "=8.8.0",
  68. "evalmd": "^0.0.19",
  69. "in-publish": "^2.0.1",
  70. "isarray": "^2.0.5",
  71. "npmignore": "^0.3.1",
  72. "nyc": "^10.3.2",
  73. "safe-publish-latest": "^2.0.0",
  74. "tape": "^5.7.4",
  75. "typescript": "^5.4.0-dev.20240131"
  76. },
  77. "auto-changelog": {
  78. "output": "CHANGELOG.md",
  79. "template": "keepachangelog",
  80. "unreleased": false,
  81. "commitLimit": false,
  82. "backfillLimit": false,
  83. "hideCredit": true
  84. },
  85. "publishConfig": {
  86. "ignore": [
  87. ".github/workflows"
  88. ]
  89. },
  90. "dependencies": {
  91. "possible-typed-array-names": "^1.0.0"
  92. }
  93. }