-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "public_verify_example",
"version": "1.0.0",
"description": "ECDSA signature verifier",
"main": "app.js",
"scripts": {
"start": "node ./src/app.js",
"test": "NODE_OPTIONS=--max_old_space_size=4000 NODE_ENV=test nyc mocha",
"lint": "eslint \"{src,bin}/**/*.js\"",
"prettier": "prettier --write \"{src,test,bin,config}/**/*.{js,json,md,yml}\" \"*.{js,json,md,yml}\""
},
"author": "INC4 Team",
"license": "ISC",
"dependencies": {
"@noble/secp256k1": "^1.7.1",
"circom_tester": "^0.0.19",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"ethers": "^6.1.0",
"ffjavascript": "^0.2.57",
"snarkjs": "^0.6.7",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3"
},
"nyc": {
"include": [
"src/**/*.js"
],
"all": true,
"reporter": "text-summary"
}
}