b8c8ba9f51116775ae110412f962df1b980e54813d2537c3f38685c8bfed3b40ce0b973f17e9541da1a1c1d5a5f2253a7f204a30c55e3cb72801778e9a029d 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "sha.js",
  3. "description": "Streamable SHA hashes in pure javascript",
  4. "version": "2.4.12",
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/crypto-browserify/sha.js.git"
  8. },
  9. "bin": "./bin.js",
  10. "scripts": {
  11. "prepack": "npmignore --auto --commentLines=autogenerated",
  12. "lint": "eslint --ext=js,mjs .",
  13. "pretest": "npm run lint",
  14. "test": "npm run tests-only",
  15. "tests-only": "tape 'test/**/*.js'",
  16. "posttest": "npx npm@'>= 10.2' audit --production",
  17. "version": "auto-changelog && git add CHANGELOG.md",
  18. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  19. },
  20. "license": "(MIT AND BSD-3-Clause)",
  21. "author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)",
  22. "funding": {
  23. "url": "https://github.com/sponsors/ljharb"
  24. },
  25. "homepage": "https://github.com/crypto-browserify/sha.js",
  26. "dependencies": {
  27. "inherits": "^2.0.4",
  28. "safe-buffer": "^5.2.1",
  29. "to-buffer": "^1.2.0"
  30. },
  31. "devDependencies": {
  32. "@ljharb/eslint-config": "^21.2.0",
  33. "auto-changelog": "^2.5.0",
  34. "encoding": "^0.1.13",
  35. "eslint": "=8.8.0",
  36. "hash-test-vectors": "^1.3.2",
  37. "npmignore": "^0.3.1",
  38. "tape": "^5.9.0",
  39. "typedarray": "^0.0.7"
  40. },
  41. "auto-changelog": {
  42. "output": "CHANGELOG.md",
  43. "template": "keepachangelog",
  44. "unreleased": false,
  45. "commitLimit": false,
  46. "backfillLimit": false,
  47. "hideCredit": true
  48. },
  49. "publishConfig": {
  50. "ignore": [
  51. ".github/workflows",
  52. ".github"
  53. ]
  54. },
  55. "engines": {
  56. "node": ">= 0.10"
  57. }
  58. }