You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
803 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. {
  2. "name": "circom",
  3. "version": "0.0.5",
  4. "description": "Language to generate logic circuits",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "mocha",
  11. "buildParser": "jison parser/jaz.jison -o parser/jaz.js"
  12. },
  13. "bin": {
  14. "circom": "cli.js"
  15. },
  16. "keywords": [
  17. "zkSnarks",
  18. "r1cs",
  19. "circuits",
  20. "zero",
  21. "knowlage",
  22. "ethereum",
  23. "zcash"
  24. ],
  25. "author": "0kims",
  26. "license": "GPL-3.0",
  27. "repository": {
  28. "type": "git",
  29. "url": "git+https://github.com/iden3/jaz.git"
  30. },
  31. "dependencies": {
  32. "big-integer": "^1.6.32",
  33. "optimist": "^0.6.1"
  34. },
  35. "devDependencies": {
  36. "chai": "^4.1.2",
  37. "eslint": "^5.0.1",
  38. "eslint-plugin-mocha": "^5.0.0",
  39. "jison": "^0.4.18",
  40. "zksnark": "0.0.5"
  41. }
  42. }