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.

39 lines
959 B

5 years ago
5 years ago
5 years ago
  1. {
  2. "name": "websnark",
  3. "version": "0.0.3",
  4. "description": "big integer library to work in Zq",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --experimental-worker",
  8. "buildwasm": "node tools/buildwasm.js",
  9. "build": "node tools/buildwasm.js; browserify main.js -o build/websnark.js --exclude worker_threads --exclude crypto; cp build/websnark.js example/websnark.js"
  10. },
  11. "keywords": [
  12. "bigint",
  13. "bignum",
  14. "biginteger",
  15. "zq",
  16. "elliptic",
  17. "curve",
  18. "prime",
  19. "field"
  20. ],
  21. "author": "Jordi Baylina",
  22. "license": "GPL-3.0",
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/iden3/websnark.git"
  26. },
  27. "devDependencies": {
  28. "eslint": "^5.14.0",
  29. "eslint-plugin-mocha": "^5.3.0",
  30. "eslint-plugin-webassembly": "^1.8.4",
  31. "mocha": "^6.1.2",
  32. "package": "^1.0.1",
  33. "snarkjs": "^0.1.12",
  34. "wasmbuilder": "0.0.2"
  35. },
  36. "dependencies": {
  37. "big-integer": "^1.6.42"
  38. }
  39. }