{ "name": "@zkopru/tree", "version": "1.0.0-beta.2", "license": "GPL-3.0-or-later", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "_moduleAliases": { "~babyjubjub": "../babyjubjub/dist", "~database": "../database/dist", "~dataset": "../dataset/dist", "~tree": "dist" }, "scripts": { "prebuild": "shx mkdir -p dist", "build": "tsc --build tsconfig.build.json", "clean": "tsc --build tsconfig.build.json --clean && shx rm -rf coverage *.log junit.xml dist && jest --clearCache", "link-modules": "link-module-alias", "test": "jest", "test:rebuild": "yarn build && yarn test", "test:unit": "jest test/unit", "test:integration": "jest test/unit", "test:watch": "jest --watch", "test:ci": "jest --coverage --ci --reporters='jest-junit'", "coverage": "jest --coverage", "coverage:show": "live-server coverage", "dev": "ts-node-dev -r tsconfig-paths/register src/index.ts", "start": "node dist/index.js" }, "dependencies": { "@zkopru/babyjubjub": "file:../babyjubjub", "@zkopru/database": "file:../database", "@zkopru/transaction": "file:../transaction", "@zkopru/utils": "file:../utils", "async-lock": "^1.2.2", "big-integer": "^1.6.48", "bn.js": "^5.2.0", "circomlib": "0.5.1", "soltypes": "^1.3.5", "uuid": "^8.1.0", "web3-utils": "1.2.11" }, "publishConfig": { "access": "public" } }