package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "possible-typed-array-names",
  3. "version": "1.0.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": "aud --production",
  20. "prelint": "evalmd README.md",
  21. "lint": "eslint --ext=js,mjs .",
  22. "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
  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. "@ljharb/eslint-config": "^21.1.0",
  54. "@types/tape": "^5.6.4",
  55. "aud": "^2.0.4",
  56. "auto-changelog": "^2.4.0",
  57. "eclint": "^2.8.1",
  58. "eslint": "=8.8.0",
  59. "evalmd": "^0.0.19",
  60. "in-publish": "^2.0.1",
  61. "npmignore": "^0.3.1",
  62. "nyc": "^10.3.2",
  63. "safe-publish-latest": "^2.0.0",
  64. "tape": "^5.7.5",
  65. "typescript": "next"
  66. },
  67. "auto-changelog": {
  68. "output": "CHANGELOG.md",
  69. "template": "keepachangelog",
  70. "unreleased": false,
  71. "commitLimit": false,
  72. "backfillLimit": false,
  73. "hideCredit": true
  74. },
  75. "publishConfig": {
  76. "ignore": [
  77. ".github/workflows"
  78. ]
  79. },
  80. "engines": {
  81. "node": ">= 0.4"
  82. }
  83. }