fixed-merkle-tree/package.json

39 lines
1019 B
JSON
Raw Normal View History

2020-07-31 04:00:33 +03:00
{
2020-07-31 07:29:01 +03:00
"name": "fixed-merkle-tree",
2022-02-16 18:05:45 +03:00
"version": "0.6.1",
2020-07-31 07:12:45 +03:00
"description": "Fixed depth merkle tree implementation with sequential inserts",
2021-09-15 20:01:17 +03:00
"repository": "https://github.com/tornadocash/fixed-merkle-tree.git",
2022-02-22 11:45:31 +03:00
"main": "lib/index.js",
"types": "lib/index.d.ts",
2020-07-31 04:00:33 +03:00
"scripts": {
2022-02-22 11:45:31 +03:00
"test": "ts-mocha 'test/*.spec.ts'",
"build": "tsc",
2020-07-31 06:32:48 +03:00
"lint": "eslint ."
2020-07-31 04:00:33 +03:00
},
2020-08-16 02:24:55 +03:00
"keywords": [
"merkle",
"tree",
"merkleTree"
],
2020-07-31 04:00:33 +03:00
"author": "Roman Semenov <semenov.roma@gmail.com>",
"license": "ISC",
2020-08-16 02:24:55 +03:00
"files": [
"src/*"
],
2020-07-31 04:00:33 +03:00
"dependencies": {
2020-08-19 01:35:12 +03:00
"circomlib": "git+https://github.com/tornadocash/circomlib.git#5beb6aee94923052faeecea40135d45b6ce6172c"
2020-07-31 04:00:33 +03:00
},
"devDependencies": {
2022-02-22 11:45:31 +03:00
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
2020-07-31 04:00:33 +03:00
"chai": "^4.2.0",
2022-02-22 11:45:31 +03:00
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^9.2.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
2020-07-31 04:00:33 +03:00
}
}