package.json 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "browserify-sign",
  3. "version": "4.2.1",
  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. "coverage": "nyc npm run unit",
  21. "lint": "standard",
  22. "test": "npm run lint && npm run unit",
  23. "unit": "tape test/*.js"
  24. },
  25. "dependencies": {
  26. "bn.js": "^5.1.1",
  27. "browserify-rsa": "^4.0.1",
  28. "create-hash": "^1.2.0",
  29. "create-hmac": "^1.1.7",
  30. "elliptic": "^6.5.3",
  31. "inherits": "^2.0.4",
  32. "parse-asn1": "^5.1.5",
  33. "readable-stream": "^3.6.0",
  34. "safe-buffer": "^5.2.0"
  35. },
  36. "devDependencies": {
  37. "nyc": "^15.0.1",
  38. "standard": "^14.3.3",
  39. "tape": "^5.0.0"
  40. },
  41. "browser": "browser/index.js"
  42. }