package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "elliptic",
  3. "version": "6.5.4",
  4. "description": "EC cryptography",
  5. "main": "lib/elliptic.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "lint": "eslint lib test",
  11. "lint:fix": "npm run lint -- --fix",
  12. "unit": "istanbul test _mocha --reporter=spec test/index.js",
  13. "test": "npm run lint && npm run unit",
  14. "version": "grunt dist && git add dist/"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git@github.com:indutny/elliptic"
  19. },
  20. "keywords": [
  21. "EC",
  22. "Elliptic",
  23. "curve",
  24. "Cryptography"
  25. ],
  26. "author": "Fedor Indutny <fedor@indutny.com>",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/indutny/elliptic/issues"
  30. },
  31. "homepage": "https://github.com/indutny/elliptic",
  32. "devDependencies": {
  33. "brfs": "^2.0.2",
  34. "coveralls": "^3.1.0",
  35. "eslint": "^7.6.0",
  36. "grunt": "^1.2.1",
  37. "grunt-browserify": "^5.3.0",
  38. "grunt-cli": "^1.3.2",
  39. "grunt-contrib-connect": "^3.0.0",
  40. "grunt-contrib-copy": "^1.0.0",
  41. "grunt-contrib-uglify": "^5.0.0",
  42. "grunt-mocha-istanbul": "^5.0.2",
  43. "grunt-saucelabs": "^9.0.1",
  44. "istanbul": "^0.4.5",
  45. "mocha": "^8.0.1"
  46. },
  47. "dependencies": {
  48. "bn.js": "^4.11.9",
  49. "brorand": "^1.1.0",
  50. "hash.js": "^1.0.0",
  51. "hmac-drbg": "^1.0.1",
  52. "inherits": "^2.0.4",
  53. "minimalistic-assert": "^1.0.1",
  54. "minimalistic-crypto-utils": "^1.0.1"
  55. }
  56. }