fixed-merkle-tree/package.json

32 lines
841 B
JSON
Raw Normal View History

2020-07-31 03:00:33 +02:00
{
2020-07-31 06:29:01 +02:00
"name": "fixed-merkle-tree",
2022-02-16 16:05:45 +01:00
"version": "0.6.1",
2020-07-31 06:12:45 +02:00
"description": "Fixed depth merkle tree implementation with sequential inserts",
2021-09-15 19:01:17 +02:00
"repository": "https://github.com/tornadocash/fixed-merkle-tree.git",
2020-07-31 03:00:33 +02:00
"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
},
2020-08-16 01:24:55 +02:00
"keywords": [
"merkle",
"tree",
"merkleTree"
],
2020-07-31 03:00:33 +02:00
"author": "Roman Semenov <semenov.roma@gmail.com>",
"license": "ISC",
2020-08-16 01:24:55 +02:00
"files": [
"src/*"
],
2020-07-31 03:00:33 +02:00
"dependencies": {
"snarkjs": "git+https://github.com/tornadocash/snarkjs.git#869181cfaf7526fe8972073d31655493a04326d5",
2020-08-19 00:35:12 +02:00
"circomlib": "git+https://github.com/tornadocash/circomlib.git#5beb6aee94923052faeecea40135d45b6ce6172c"
2020-07-31 03:00:33 +02:00
},
"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"
}
}