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.

43 lines
853 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
6 years ago
  1. {
  2. "name": "circom",
  3. "version": "0.0.10",
  4. "description": "Language to generate logic circuits",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "mocha --max-old-space-size=4000",
  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": "https://github.com/iden3/circom.git"
  30. },
  31. "dependencies": {
  32. "big-integer": "^1.6.32",
  33. "optimist": "^0.6.1",
  34. "yargs": "^12.0.2"
  35. },
  36. "devDependencies": {
  37. "chai": "^4.1.2",
  38. "eslint": "^5.0.1",
  39. "eslint-plugin-mocha": "^5.0.0",
  40. "jison": "^0.4.18",
  41. "snarkjs": "0.1.3"
  42. }
  43. }