fixed-merkle-tree/package.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2020-07-31 04:00:33 +03:00
{
"name": "@tornado/fixed-merkle-tree",
2022-03-28 10:44:50 +03:00
"version": "0.7.3",
2020-07-31 07:12:45 +03:00
"description": "Fixed depth merkle tree implementation with sequential inserts",
"repository": "https://git.tornado.ws/tornado-packages/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-03-09 13:00:00 +03:00
"test": "ts-mocha 'test/*.spec.ts' -s 10",
2022-03-01 04:16:52 +03:00
"coverage": "nyc npm run test",
2022-03-14 11:34:59 +03:00
"build": "tsc",
"clean": "rm -rf lib/",
"prepare": "npm run clean && npm run build",
"lint": "eslint src"
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": [
2022-03-14 13:14:01 +03:00
"src/*",
"lib/*"
2020-08-16 02:24:55 +03:00
],
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",
2022-03-14 11:34:59 +03:00
"mocha": "^9.2.2",
"nyc": "^15.1.0",
2022-02-22 11:45:31 +03:00
"ts-mocha": "^9.0.2",
2022-03-14 11:34:59 +03:00
"typescript": "^4.6.2"
2020-07-31 04:00:33 +03:00
}
}