-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.58 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
63
64
65
66
67
68
69
{
"name": "@solarity/chai-zkit",
"version": "0.3.0",
"license": "MIT",
"author": "Distributed Lab",
"readme": "README.md",
"description": "ZKit chai matchers for Circom",
"repository": {
"type": "git",
"url": "git+https://github.com/dl-solarity/chai-zkit.git"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"keywords": [
"solarity",
"circom",
"chai",
"chai-plugin",
"assertions",
"zkp"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky",
"build": "tsc",
"test": "mocha --recursive 'test/**/*.ts' --exit",
"coverage": "nyc mocha --recursive 'test/**/*.ts' --exit",
"lint-fix": "prettier --write \"./**/*.ts\"",
"publish-to-npm": "npm run lint-fix && bash ./scripts/publish.sh"
},
"nyc": {
"reporter": [
"html",
"text"
]
},
"dependencies": {
"chai-as-promised": "7.1.1",
"snarkjs": "0.7.5"
},
"peerDependencies": {
"@solarity/hardhat-zkit": ">=0.5.0 <0.6.0",
"@solarity/zkit": ">=0.2.4 <0.4.0",
"chai": "^4.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@solarity/hardhat-zkit": "^0.5.0",
"@solarity/zkit": "^0.3.0",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/snarkjs": "^0.7.8",
"chai": "^4.4.0",
"ethers": "6.11.1",
"hardhat": "2.20.1",
"husky": "^9.0.11",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}