package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "browserify-rsa",
  3. "version": "4.1.1",
  4. "description": "RSA for browserify",
  5. "bugs": {
  6. "url": "https://github.com/crypto-browserify/browserify-rsa/issues"
  7. },
  8. "license": "MIT",
  9. "main": "index.js",
  10. "exports": {
  11. ".": "./index.js",
  12. "./package.json": "./package.json"
  13. },
  14. "sideEffects": false,
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/crypto-browserify/browserify-rsa.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. "pretest": "npm run lint",
  25. "test": "npm run tests-only",
  26. "tests-only": "tape 'test/**/*.js'",
  27. "posttest": "npx npm@'>=10.2' audit --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. "randombytes": "^2.1.0",
  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. "parse-asn1": "^5.1.7",
  44. "safe-publish-latest": "^2.0.0",
  45. "tape": "^5.9.0"
  46. },
  47. "engines": {
  48. "node": ">= 0.10"
  49. },
  50. "auto-changelog": {
  51. "output": "CHANGELOG.md",
  52. "template": "keepachangelog",
  53. "unreleased": false,
  54. "commitLimit": false,
  55. "backfillLimit": false,
  56. "hideCredit": true
  57. },
  58. "publishConfig": {
  59. "ignore": [
  60. ".github/workflows",
  61. "test",
  62. ".eslintrc",
  63. ".github"
  64. ]
  65. }
  66. }