2020-07-31 03:00:33 +02:00
|
|
|
{
|
2020-07-31 06:29:01 +02:00
|
|
|
"name": "fixed-merkle-tree",
|
2022-02-24 04:21:14 +01:00
|
|
|
"version": "0.7.0",
|
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",
|
2022-02-22 09:45:31 +01:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
2022-02-25 07:36:19 +01:00
|
|
|
"engines": {
|
|
|
|
"node": "14.17",
|
|
|
|
"npm": "6"
|
|
|
|
},
|
2020-07-31 03:00:33 +02:00
|
|
|
"scripts": {
|
2022-03-09 11:00:00 +01:00
|
|
|
"test": "ts-mocha 'test/*.spec.ts' -s 10",
|
2022-03-01 02:16:52 +01:00
|
|
|
"coverage": "nyc npm run test",
|
2022-02-22 09:45:31 +01:00
|
|
|
"build": "tsc",
|
2022-02-24 04:21:14 +01:00
|
|
|
"clean": "rm -rf lib/",
|
|
|
|
"prepare": "npm run clean && npm run build",
|
|
|
|
"lint": "eslint src"
|
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
|
|
|
"devDependencies": {
|
2022-02-22 09:45:31 +01: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 03:00:33 +02:00
|
|
|
"chai": "^4.2.0",
|
2022-02-22 09:45:31 +01:00
|
|
|
"eslint": "^8.9.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2022-02-25 07:36:19 +01:00
|
|
|
"nyc": "^15.1.0",
|
2022-02-22 09:45:31 +01:00
|
|
|
"mocha": "^9.2.1",
|
|
|
|
"ts-mocha": "^9.0.2",
|
2022-03-09 07:25:49 +01:00
|
|
|
"typescript": "^4.5.5",
|
2022-03-10 15:12:55 +01:00
|
|
|
"circomlibjs": "^0.1.1"
|
2020-07-31 03:00:33 +02:00
|
|
|
}
|
|
|
|
}
|