24755ad0525512a6f501fb9712bad62584ce9602c59abb182d51517f010abbe99af14a5cff8aa67f9fc5f24e8529234e199b139ed54a5c23cd0d2ae6e4188a 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "possible-typed-array-names",
  3. "version": "1.1.0",
  4. "description": "A simple list of possible Typed Array names.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "types": "./index.d.ts",
  11. "sideEffects": false,
  12. "scripts": {
  13. "prepack": "npmignore --auto --commentLines=autogenerated",
  14. "prepublishOnly": "safe-publish-latest",
  15. "prepublish": "not-in-publish || npm run prepublishOnly",
  16. "pretest": "npm run lint",
  17. "test": "npm run tests-only",
  18. "tests-only": "nyc tape 'test/**/*.js'",
  19. "posttest": "npx npm@'>= 10.2' audit --production",
  20. "prelint": "evalmd README.md && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
  21. "lint": "eslint --ext=js,mjs .",
  22. "postlint": "tsc && attw -P",
  23. "version": "auto-changelog && git add CHANGELOG.md",
  24. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/ljharb/possible-typed-array-names.git"
  29. },
  30. "keywords": [
  31. "typed",
  32. "array",
  33. "typedarray",
  34. "Float32Array",
  35. "Float64Array",
  36. "Int8Array",
  37. "Int16Array",
  38. "Int32Array",
  39. "Uint8Array",
  40. "Uint8ClampedArray",
  41. "Uint16Array",
  42. "Uint32Array",
  43. "BigInt64Array",
  44. "BigUint64Array"
  45. ],
  46. "author": "Jordan Harband <ljharb@gmail.com>",
  47. "license": "MIT",
  48. "bugs": {
  49. "url": "https://github.com/ljharb/possible-typed-array-names/issues"
  50. },
  51. "homepage": "https://github.com/ljharb/possible-typed-array-names#readme",
  52. "devDependencies": {
  53. "@arethetypeswrong/cli": "^0.17.3",
  54. "@ljharb/eslint-config": "^21.1.1",
  55. "@ljharb/tsconfig": "^0.2.3",
  56. "@types/tape": "^5.8.1",
  57. "auto-changelog": "^2.5.0",
  58. "eclint": "^2.8.1",
  59. "eslint": "=8.8.0",
  60. "evalmd": "^0.0.19",
  61. "in-publish": "^2.0.1",
  62. "npmignore": "^0.3.1",
  63. "nyc": "^10.3.2",
  64. "safe-publish-latest": "^2.0.0",
  65. "tape": "^5.9.0",
  66. "typescript": "next"
  67. },
  68. "auto-changelog": {
  69. "output": "CHANGELOG.md",
  70. "template": "keepachangelog",
  71. "unreleased": false,
  72. "commitLimit": false,
  73. "backfillLimit": false,
  74. "hideCredit": true
  75. },
  76. "publishConfig": {
  77. "ignore": [
  78. ".github/workflows"
  79. ]
  80. },
  81. "engines": {
  82. "node": ">= 0.4"
  83. }
  84. }