package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "cipher-base",
  3. "version": "1.0.6",
  4. "description": "abstract base class for crypto-streams",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prepublishOnly": "safe-publish-latest",
  9. "prepublish": "not-in-publish || npm run prepublishOnly",
  10. "lint": "eslint --ext=js,.mjs .",
  11. "pretest": "npm run lint",
  12. "test": "npm run tests-only",
  13. "tests-only": "tape 'test/**/*.js'",
  14. "posttest": "npx npm@'>=10.2' audit --production",
  15. "version": "auto-changelog && git add CHANGELOG.md",
  16. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/crypto-browserify/cipher-base.git"
  21. },
  22. "keywords": [
  23. "cipher",
  24. "stream"
  25. ],
  26. "author": "Calvin Metcalf <calvin.metcalf@gmail.com>",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/crypto-browserify/cipher-base/issues"
  30. },
  31. "homepage": "https://github.com/crypto-browserify/cipher-base#readme",
  32. "dependencies": {
  33. "inherits": "^2.0.4",
  34. "safe-buffer": "^5.2.1"
  35. },
  36. "devDependencies": {
  37. "@ljharb/eslint-config": "^21.1.1",
  38. "auto-changelog": "^2.5.0",
  39. "encoding": "^0.1.13",
  40. "eslint": "=8.8.0",
  41. "in-publish": "^2.0.1",
  42. "npmignore": "^0.3.1",
  43. "safe-publish-latest": "^2.0.0",
  44. "tape": "^5.9.0"
  45. },
  46. "publishConfig": {
  47. "ignore": [
  48. ".github/workflows"
  49. ]
  50. },
  51. "auto-changelog": {
  52. "output": "CHANGELOG.md",
  53. "template": "keepachangelog",
  54. "unreleased": false,
  55. "commitLimit": false,
  56. "backfillLimit": false,
  57. "hideCredit": true
  58. },
  59. "engines": {
  60. "node": ">= 0.10"
  61. }
  62. }