package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "scytl-keystore",
  3. "version": "2.1.5-4",
  4. "description": "Scytl's key store 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-pbkdf": "^2.1.5-4",
  20. "scytl-certificate": "^2.1.5-4",
  21. "scytl-symmetric": "^2.1.5-4",
  22. "scytl-mathematical": "^2.1.5-4",
  23. "scytl-elgamal": "^2.1.5-4"
  24. },
  25. "devDependencies": {
  26. "clang-format": "^1.0.53",
  27. "cpy": "^5.1.0",
  28. "recursive-copy": "^2.0.9",
  29. "fs": "^0.0.1-security",
  30. "jasmine-core": "^2.7.0",
  31. "jshint": "^2.9.5",
  32. "karma": "^1.7.0",
  33. "karma-coverage": "^1.1.1",
  34. "karma-jasmine": "^1.1.0",
  35. "karma-phantomjs-launcher": "^1.0.4",
  36. "karma-webpack": "^2.0.4",
  37. "webpack": "^3.4.1",
  38. "xml-parser": "^1.2.1"
  39. },
  40. "engines": {
  41. "node": "^7.10.0",
  42. "npm": "^4.2.0"
  43. },
  44. "repository": {
  45. "type": "git",
  46. "url": "https://scm.scytl.net/stash/projects/COMM/repos/scytl-cryptolib/cryptolib-js-keystore"
  47. },
  48. "author": "Scytl Secure Electronic Voting SA",
  49. "license": "UNLICENSED",
  50. "private": true,
  51. "publishConfig": {
  52. "registry": "https://nexus.scytl.net/content/repositories/npm-scytl/"
  53. }
  54. }