package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "author": "Brian J. Brennan <brianloveswords@gmail.com>",
  3. "name": "buffer-crc32",
  4. "description": "A pure javascript CRC32 algorithm that plays nice with binary data",
  5. "version": "1.0.0",
  6. "licenses": [
  7. {
  8. "type": "MIT",
  9. "url": "https://github.com/brianloveswords/buffer-crc32/raw/master/LICENSE"
  10. }
  11. ],
  12. "contributors": [
  13. {
  14. "name": "Vladimir Kuznetsov",
  15. "github": "mistakster"
  16. }
  17. ],
  18. "homepage": "https://github.com/brianloveswords/buffer-crc32",
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/brianloveswords/buffer-crc32.git"
  22. },
  23. "scripts": {
  24. "test": "tap tests/*.test.js --reporter classic",
  25. "build": "npx unbuild@2.0.0 && npx cpy-cli index.d.ts dist --rename=index.d.cts && npx cpy-cli index.d.ts dist --rename=index.d.mts",
  26. "prepublishOnly": "npm run build",
  27. "format": "prettier --write --log-level warn \"**/*.{json,md,js}\""
  28. },
  29. "dependencies": {},
  30. "devDependencies": {
  31. "prettier": "^3.2.4",
  32. "tap": "~11.1.5"
  33. },
  34. "optionalDependencies": {},
  35. "engines": {
  36. "node": ">=8.0.0"
  37. },
  38. "license": "MIT",
  39. "type": "commonjs",
  40. "exports": {
  41. ".": {
  42. "import": "./dist/index.mjs",
  43. "require": "./dist/index.cjs"
  44. }
  45. },
  46. "main": "./dist/index.cjs",
  47. "types": "./index.d.ts",
  48. "files": [
  49. "dist",
  50. "index.d.ts",
  51. "LICENSE",
  52. "README.md"
  53. ]
  54. }