fixed-merkle-tree/package.json

24 lines
625 B
JSON
Raw Normal View History

2020-07-31 03:00:33 +02:00
{
"name": "merkle-tree",
"version": "1.0.0",
"description": "",
"main": "src/merkleTree.js",
"scripts": {
2020-07-31 05:32:48 +02:00
"test": "mocha",
"lint": "eslint ."
2020-07-31 03:00:33 +02:00
},
"keywords": [],
"author": "Roman Semenov <semenov.roma@gmail.com>",
"license": "ISC",
"dependencies": {
"snarkjs": "git+https://github.com/tornadocash/snarkjs.git#869181cfaf7526fe8972073d31655493a04326d5",
"circomlib": "git+https://github.com/tornadocash/circomlib.git#c372f14d324d57339c88451834bf2824e73bbdbc"
},
"devDependencies": {
2020-07-31 05:32:48 +02:00
"babel-eslint": "^10.1.0",
2020-07-31 03:00:33 +02:00
"chai": "^4.2.0",
2020-07-31 05:32:48 +02:00
"eslint": "^7.5.0",
2020-07-31 03:00:33 +02:00
"mocha": "^8.1.0"
}
}