package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "available-typed-arrays",
  3. "version": "1.0.5",
  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. ".": [
  9. {
  10. "default": "./index.js"
  11. },
  12. "./index.js"
  13. ],
  14. "./package": "./package.json",
  15. "./package.json": "./package.json"
  16. },
  17. "sideEffects": false,
  18. "scripts": {
  19. "prepublish": "not-in-publish || npm run prepublishOnly",
  20. "prepublishOnly": "safe-publish-latest",
  21. "prelint": "evalmd README.md",
  22. "lint": "eslint --ext=js,mjs .",
  23. "pretest": "npm run lint",
  24. "tests-only": "nyc tape 'test/**/*.js'",
  25. "test:harmony": "nyc node --harmony --es-staging test",
  26. "test": "npm run tests-only && npm run test:harmony",
  27. "posttest": "aud --production",
  28. "version": "auto-changelog && git add CHANGELOG.md",
  29. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git+https://github.com/inspect-js/available-typed-arrays.git"
  34. },
  35. "keywords": [
  36. "typed",
  37. "arrays",
  38. "Float32Array",
  39. "Float64Array",
  40. "Int8Array",
  41. "Int16Array",
  42. "Int32Array",
  43. "Uint8Array",
  44. "Uint8ClampedArray",
  45. "Uint16Array",
  46. "Uint32Array",
  47. "BigInt64Array",
  48. "BigUint64Array"
  49. ],
  50. "author": "Jordan Harband <ljharb@gmail.com>",
  51. "funding": {
  52. "url": "https://github.com/sponsors/ljharb"
  53. },
  54. "license": "MIT",
  55. "bugs": {
  56. "url": "https://github.com/inspect-js/available-typed-arrays/issues"
  57. },
  58. "homepage": "https://github.com/inspect-js/available-typed-arrays#readme",
  59. "engines": {
  60. "node": ">= 0.4"
  61. },
  62. "devDependencies": {
  63. "@ljharb/eslint-config": "^18.0.0",
  64. "array.prototype.every": "^1.1.2",
  65. "aud": "^1.1.5",
  66. "auto-changelog": "^2.3.0",
  67. "eslint": "^7.32.0",
  68. "evalmd": "^0.0.19",
  69. "isarray": "^2.0.5",
  70. "nyc": "^10.3.2",
  71. "safe-publish-latest": "^1.1.4",
  72. "tape": "^5.3.1"
  73. },
  74. "auto-changelog": {
  75. "output": "CHANGELOG.md",
  76. "template": "keepachangelog",
  77. "unreleased": false,
  78. "commitLimit": false,
  79. "backfillLimit": false,
  80. "hideCredit": true
  81. }
  82. }