package.json 663 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "browserify-rsa",
  3. "version": "4.1.0",
  4. "description": "RSA for browserify",
  5. "bugs": {
  6. "url": "https://github.com/crypto-browserify/browserify-rsa/issues"
  7. },
  8. "license": "MIT",
  9. "files": [
  10. "index.js"
  11. ],
  12. "main": "index.js",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com:crypto-browserify/browserify-rsa.git"
  16. },
  17. "scripts": {
  18. "lint": "standard",
  19. "test": "npm run lint && npm run unit",
  20. "unit": "tape test/*.js"
  21. },
  22. "dependencies": {
  23. "bn.js": "^5.0.0",
  24. "randombytes": "^2.0.1"
  25. },
  26. "devDependencies": {
  27. "parse-asn1": "^5.0.0",
  28. "standard": "^6.0.8",
  29. "tape": "^4.5.1"
  30. }
  31. }