Files
zkopru/packages/transaction/package.json
2021-07-10 13:56:33 +09:00

45 lines
1.2 KiB
JSON

{
"name": "@zkopru/transaction",
"version": "1.0.0-beta.2",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"_moduleAliases": {
"~transaction": "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: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/utils": "file:../utils",
"big-integer": "^1.6.48",
"bs58": "^4.0.1",
"chacha20": "^0.1.4",
"circomlib": "0.5.1",
"keccak": "^3.0.1",
"snarkjs": "0.3.33",
"soltypes": "^1.3.5",
"web3-eth-abi": "1.2.11",
"web3-utils": "1.2.11"
},
"publishConfig": {
"access": "public"
}
}