-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
62 lines (62 loc) · 1.55 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "maci-crypto",
"version": "2.5.0",
"description": "A package containing cryptography utilities for MACI",
"main": "build/ts/index.js",
"files": [
"build",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"benchmarks": "ts-node ts/__benchmarks__/index.ts",
"build": "tsc -p tsconfig.build.json",
"types": "tsc -p tsconfig.json --noEmit",
"test": "nyc ts-mocha --exit ts/__tests__/*.test.ts",
"test:crypto": "ts-mocha --exit ts/__tests__/Crypto.test.ts",
"test:utils": "ts-mocha --exit ts/__tests__/Utils.test.ts",
"test:imt": "ts-mocha --exit ts/__tests__/IMT.test.ts",
"docs": "typedoc --plugin typedoc-plugin-markdown --options ./typedoc.json"
},
"dependencies": {
"@zk-kit/baby-jubjub": "^1.0.3",
"@zk-kit/eddsa-poseidon": "^1.1.0",
"@zk-kit/poseidon-cipher": "^0.3.2",
"ethers": "^6.13.4"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.8",
"@types/node": "^22.9.0",
"benny": "^3.7.1",
"chai": "^4.3.10",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
},
"nyc": {
"reporter": [
"text",
"lcov"
],
"extensions": [
".ts"
],
"all": true,
"exclude": [
"ts/__benchmarks__/**",
"**/__tests__/@types/*",
"**/__tests__/*.ts",
"**/*.js",
"**/*.d.ts",
"ts/index.ts"
],
"branches": ">50%",
"lines": ">50%",
"functions": ">50%",
"statements": ">50%"
}
}