-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 942 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "bq-core",
"version": "1.0.0",
"description": "Block Qualified v2 implementing Semaphore for increased privacy and functionality",
"main": "index.js",
"repository": "https://github.com/0xdeenz/bq2.git",
"author": "0xdeenz sergio@deenz.dev",
"license": "MIT",
"private": "true",
"scripts": {
"test": "yarn test:circuits && yarn test:contracts && yarn test:libraries",
"test:circuits": "yarn workspace circuits test",
"test:contracts": "yarn workspace contracts test",
"test:libraries": "yarn workspace @bq-core/lib test"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"mocha": "^10.2.0",
"rimraf": "^5.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"rollup": "^3.20.6",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.9.4"
}
}