2025-11-05 17:04:23 -03:00

65 lines
1.6 KiB
JSON

{
"name": "hash-base",
"version": "3.1.2",
"description": "abstract base class for hash-streams",
"keywords": [
"hash",
"stream"
],
"homepage": "https://github.com/crypto-browserify/hash-base",
"bugs": {
"url": "https://github.com/crypto-browserify/hash-base/issues"
},
"license": "MIT",
"author": "Kirill Fomichev <fanatid@ya.ru> (https://github.com/fanatid)",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/crypto-browserify/hash-base.git"
},
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"lint": "eslint --ext=js,mjs .",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "nyc tape \"test/**/*.js\"",
"posttest": "npx npm@\">=10.2\" audit --production",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"dependencies": {
"inherits": "^2.0.4",
"readable-stream": "^2.3.8",
"safe-buffer": "^5.2.1",
"to-buffer": "^1.2.1"
},
"devDependencies": {
"@ljharb/eslint-config": "^21.2.0",
"auto-changelog": "^2.5.0",
"encoding": "^0.1.13",
"eslint": "=8.8.0",
"npmignore": "^0.3.1",
"nyc": "^10.3.2",
"tape": "^5.9.0"
},
"engines": {
"node": ">= 0.8"
},
"publishConfig": {
"ignore": [
".github/workflows",
".eslintrc",
".nycrc",
"test"
]
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true
}
}