fixed-merkle-tree/package.json

44 lines
1.1 KiB
JSON

{
"name": "fixed-merkle-tree",
"version": "0.7.0",
"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",
"engines": {
"node": "14.17",
"npm": "6"
},
"scripts": {
"test": "ts-mocha 'test/*.spec.ts'",
"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/*"
],
"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",
"nyc": "^15.1.0",
"mocha": "^9.2.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
}
}