mirror of
https://github.com/zkopru-network/zkopru.git
synced 2026-01-24 13:38:05 -05:00
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "@zkopru/account",
|
|
"version": "1.0.0-beta.2",
|
|
"license": "GPL-3.0-or-later",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"_moduleAliases": {
|
|
"~account": "dist",
|
|
"~utils": "../utils/dist",
|
|
"~database": "../database/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",
|
|
"test": "jest",
|
|
"link-modules": "link-module-alias",
|
|
"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",
|
|
"bip39": "^3.0.2",
|
|
"circomlib": "0.5.1",
|
|
"hdkey": "^1.1.1",
|
|
"keccak": "^3.0.1",
|
|
"soltypes": "^1.3.5",
|
|
"web3": "1.2.11",
|
|
"web3-core": "1.2.11",
|
|
"web3-utils": "1.2.11",
|
|
"web3-eth-accounts": "1.2.11"
|
|
},
|
|
"devDependencies": {
|
|
"uuid": "^8.1.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|