mirror of
https://github.com/tornadocash/fixed-merkle-tree.git
synced 2024-11-21 09:17:07 +01:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "fixed-merkle-tree",
|
|
"version": "0.7.3",
|
|
"description": "Fixed depth merkle tree implementation with sequential inserts",
|
|
"repository": "https://github.com/tornadocash/fixed-merkle-tree.git",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"scripts": {
|
|
"test": "ts-mocha 'test/*.spec.ts' -s 10",
|
|
"coverage": "nyc npm run test",
|
|
"build": "tsc",
|
|
"clean": "rm -rf lib/",
|
|
"prepare": "npm run clean && npm run build",
|
|
"lint": "eslint src"
|
|
},
|
|
"keywords": [
|
|
"merkle",
|
|
"tree",
|
|
"merkleTree"
|
|
],
|
|
"author": "Roman Semenov <semenov.roma@gmail.com>",
|
|
"license": "ISC",
|
|
"files": [
|
|
"src/*",
|
|
"lib/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/expect": "^24.3.0",
|
|
"@types/mocha": "^9.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
|
"@typescript-eslint/parser": "^5.12.0",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^8.9.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"mocha": "^9.2.2",
|
|
"nyc": "^15.1.0",
|
|
"ts-mocha": "^9.0.2",
|
|
"typescript": "^4.6.2"
|
|
}
|
|
}
|