package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "browserify-sign",
  3. "version": "4.2.3",
  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.5",
  37. "hash-base": "~3.0",
  38. "inherits": "^2.0.4",
  39. "parse-asn1": "^5.1.7",
  40. "readable-stream": "^2.3.8",
  41. "safe-buffer": "^5.2.1"
  42. },
  43. "devDependencies": {
  44. "@ljharb/eslint-config": "^21.1.0",
  45. "aud": "^2.0.4",
  46. "auto-changelog": "^2.4.0",
  47. "eslint": "=8.8.0",
  48. "in-publish": "^2.0.1",
  49. "npmignore": "^0.3.1",
  50. "nyc": "^10.3.2",
  51. "safe-publish-latest": "^2.0.0",
  52. "semver": "^6.3.1",
  53. "tape": "^5.7.5"
  54. },
  55. "browser": "browser/index.js",
  56. "engines": {
  57. "node": ">= 0.12"
  58. },
  59. "auto-changelog": {
  60. "output": "CHANGELOG.md",
  61. "template": "keepachangelog",
  62. "unreleased": false,
  63. "commitLimit": false,
  64. "backfillLimit": false,
  65. "hideCredit": true
  66. },
  67. "publishConfig": {
  68. "ignore": [
  69. ".github/workflows"
  70. ]
  71. }
  72. }