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.

18 lines
582 B

4 months ago
4 months ago
  1. {
  2. "name": "keccak-chain-circuit",
  3. "version": "0.0.1",
  4. "description": "Sonobe Circom circuit to prove a Keccak256 chain",
  5. "main": "index.js",
  6. "scripts": {
  7. "clean": "rm -fR dist",
  8. "build": "npm run clean && ./node_modules/.bin/tsc --strictNullChecks",
  9. "test": "./node_modules/.bin/mocha --timeout 5000 -p -r ts-node/register '*.test.ts'",
  10. "postinstall":"cd node_modules/keccak256-circom && npm install"
  11. },
  12. "license": "GPL-3.0",
  13. "dependencies": {
  14. "circomlib": "^2.0.5",
  15. "keccak256-circom": "git://github.com/vocdoni/keccak256-circom.git"
  16. }
  17. }