2020-07-31 04:00:33 +03:00
|
|
|
{
|
2020-07-31 07:29:01 +03:00
|
|
|
"name": "fixed-merkle-tree",
|
2020-08-06 18:00:13 +03:00
|
|
|
"version": "0.3.2",
|
2020-07-31 07:12:45 +03:00
|
|
|
"description": "Fixed depth merkle tree implementation with sequential inserts",
|
2020-07-31 04:00:33 +03:00
|
|
|
"main": "src/merkleTree.js",
|
|
|
|
"scripts": {
|
2020-07-31 06:32:48 +03:00
|
|
|
"test": "mocha",
|
|
|
|
"lint": "eslint ."
|
2020-07-31 04:00:33 +03:00
|
|
|
},
|
2020-07-31 07:12:45 +03:00
|
|
|
"keywords": ["merkle", "tree", "merkleTree"],
|
2020-07-31 04:00:33 +03:00
|
|
|
"author": "Roman Semenov <semenov.roma@gmail.com>",
|
|
|
|
"license": "ISC",
|
2020-07-31 16:11:24 +03:00
|
|
|
"files": ["src/*"],
|
2020-07-31 04:00:33 +03:00
|
|
|
"dependencies": {
|
|
|
|
"snarkjs": "git+https://github.com/tornadocash/snarkjs.git#869181cfaf7526fe8972073d31655493a04326d5",
|
|
|
|
"circomlib": "git+https://github.com/tornadocash/circomlib.git#c372f14d324d57339c88451834bf2824e73bbdbc"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-31 06:32:48 +03:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-07-31 04:00:33 +03:00
|
|
|
"chai": "^4.2.0",
|
2020-07-31 06:32:48 +03:00
|
|
|
"eslint": "^7.5.0",
|
2020-07-31 04:00:33 +03:00
|
|
|
"mocha": "^8.1.0"
|
|
|
|
}
|
|
|
|
}
|