package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "browserify-sign",
  3. "version": "4.2.2",
  4. "description": "adds node crypto signing for browsers",
  5. "bugs": {
  6. "url": "https://github.com/crypto-browserify/browserify-sign/issues"
  7. },
  8. "license": "ISC",
  9. "files": [
  10. "browser",
  11. "index.js",
  12. "algos.js"
  13. ],
  14. "main": "index.js",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/crypto-browserify/browserify-sign.git"
  18. },
  19. "scripts": {
  20. "prepack": "npmignore --auto --commentLines=autogenerated",
  21. "prepublish": "not-in-publish || npm run prepublishOnly",
  22. "prepublishOnly": "safe-publish-latest",
  23. "lint": "eslint --ext=js,mjs .",
  24. "tests-only": "nyc tape 'test/**/*.js'",
  25. "pretest": "npm run lint",
  26. "test": "npm run tests-only",
  27. "posttest": "aud --production",
  28. "version": "auto-changelog && git add CHANGELOG.md",
  29. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  30. },
  31. "dependencies": {
  32. "bn.js": "^5.2.1",
  33. "browserify-rsa": "^4.1.0",
  34. "create-hash": "^1.2.0",
  35. "create-hmac": "^1.1.7",
  36. "elliptic": "^6.5.4",
  37. "inherits": "^2.0.4",
  38. "parse-asn1": "^5.1.6",
  39. "readable-stream": "^3.6.2",
  40. "safe-buffer": "^5.2.1"
  41. },
  42. "devDependencies": {
  43. "@ljharb/eslint-config": "^21.1.0",
  44. "aud": "^2.0.3",
  45. "auto-changelog": "^2.4.0",
  46. "eslint": "=8.8.0",
  47. "in-publish": "^2.0.1",
  48. "npmignore": "^0.3.0",
  49. "nyc": "^10.3.2",
  50. "safe-publish-latest": "^2.0.0",
  51. "semver": "^6.3.1",
  52. "tape": "^5.7.2"
  53. },
  54. "browser": "browser/index.js",
  55. "engines": {
  56. "node": ">= 4"
  57. },
  58. "auto-changelog": {
  59. "output": "CHANGELOG.md",
  60. "template": "keepachangelog",
  61. "unreleased": false,
  62. "commitLimit": false,
  63. "backfillLimit": false,
  64. "hideCredit": true
  65. },
  66. "publishConfig": {
  67. "ignore": [
  68. ".github/workflows"
  69. ]
  70. }
  71. }