package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "elliptic",
  3. "version": "6.4.1",
  4. "description": "EC cryptography",
  5. "main": "lib/elliptic.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "jscs": "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js",
  11. "jshint": "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js",
  12. "lint": "npm run jscs && npm run jshint",
  13. "unit": "istanbul test _mocha --reporter=spec test/index.js",
  14. "test": "npm run lint && npm run unit",
  15. "version": "grunt dist && git add dist/"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git@github.com:indutny/elliptic"
  20. },
  21. "keywords": [
  22. "EC",
  23. "Elliptic",
  24. "curve",
  25. "Cryptography"
  26. ],
  27. "author": "Fedor Indutny <fedor@indutny.com>",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/indutny/elliptic/issues"
  31. },
  32. "homepage": "https://github.com/indutny/elliptic",
  33. "devDependencies": {
  34. "brfs": "^1.4.3",
  35. "coveralls": "^2.11.3",
  36. "grunt": "^0.4.5",
  37. "grunt-browserify": "^5.0.0",
  38. "grunt-cli": "^1.2.0",
  39. "grunt-contrib-connect": "^1.0.0",
  40. "grunt-contrib-copy": "^1.0.0",
  41. "grunt-contrib-uglify": "^1.0.1",
  42. "grunt-mocha-istanbul": "^3.0.1",
  43. "grunt-saucelabs": "^8.6.2",
  44. "istanbul": "^0.4.2",
  45. "jscs": "^2.9.0",
  46. "jshint": "^2.6.0",
  47. "mocha": "^2.1.0"
  48. },
  49. "dependencies": {
  50. "bn.js": "^4.4.0",
  51. "brorand": "^1.0.1",
  52. "hash.js": "^1.0.0",
  53. "hmac-drbg": "^1.0.0",
  54. "inherits": "^2.0.1",
  55. "minimalistic-assert": "^1.0.0",
  56. "minimalistic-crypto-utils": "^1.0.0"
  57. }
  58. }