package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "scytl-zkproof",
  3. "version": "2.1.5-4",
  4. "description": "Scytl's zero-knowledge proof service",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "compile": "jshint lib spec",
  8. "test": "karma start",
  9. "snapshot": "node target/dependency/prepare-dist.js 'snapshot' && npm publish target/dist/",
  10. "release": "node target/dependency/prepare-dist.js 'release' && npm publish target/dist/",
  11. "unpublished": "node target/dependency/prepare-dist.js",
  12. "format": "node node_modules/clang-format -style=Google -i lib/**/*.js spec/*.js spec/**/*.js karma.conf.js"
  13. },
  14. "dependencies": {
  15. "jsdoc": "^3.5.5",
  16. "node-forge": "^0.7.1",
  17. "scytl-codec": "^2.1.5-4",
  18. "scytl-cryptopolicy": "^2.1.5-4",
  19. "scytl-messagedigest": "^2.1.5-4",
  20. "scytl-securerandom": "^2.1.5-4",
  21. "scytl-mathematical": "^2.1.5-4",
  22. "scytl-elgamal": "^2.1.5-4"
  23. },
  24. "devDependencies": {
  25. "clang-format": "^1.0.53",
  26. "cpy": "^5.1.0",
  27. "recursive-copy": "^2.0.9",
  28. "fs": "^0.0.1-security",
  29. "jasmine-core": "^2.7.0",
  30. "jshint": "^2.9.5",
  31. "karma": "^1.7.0",
  32. "karma-coverage": "^1.1.1",
  33. "karma-jasmine": "^1.1.0",
  34. "karma-phantomjs-launcher": "^1.0.4",
  35. "karma-webpack": "^2.0.4",
  36. "webpack": "^3.4.1",
  37. "xml-parser": "^1.2.1"
  38. },
  39. "engines": {
  40. "node": "^7.10.0",
  41. "npm": "^4.2.0"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "https://scm.scytl.net/stash/projects/COMM/repos/scytl-cryptolib/cryptolib-js-zkproof"
  46. },
  47. "author": "Scytl Secure Electronic Voting SA",
  48. "license": "UNLICENSED",
  49. "private": true,
  50. "publishConfig": {
  51. "registry": "https://nexus.scytl.net/content/repositories/npm-scytl/"
  52. }
  53. }