-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 949 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 949 Bytes
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
{
"name": "sonar",
"version": "0.1.0",
"description": "Sonar ZK coprocessor — TypeScript test suite",
"scripts": {
"test:anchor": "bash scripts/anchor-test.sh",
"test": "npx ts-mocha -p ./tsconfig.json -t 60000 --exit 'program/tests/**/*.ts'",
"postinstall": "node -e \"const fs=require('fs'),p='node_modules/yargs/package.json';try{const j=JSON.parse(fs.readFileSync(p));if(j.type==='module'){delete j.type;fs.writeFileSync(p,JSON.stringify(j,null,2));console.log('patched yargs for Node 25 compat');}}catch(e){}\""
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
"chai": "^4.3.4",
"mocha": "^10.2.0",
"solana-bankrun": "^0.4.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"overrides": {
"mocha": {
"yargs": "^17.7.2"
}
}
}