-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.55 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.55 KB
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
{
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"test": "anchor build && yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/*.test.ts",
"test:honorary": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/honoraryPosition.test.ts",
"test:initialize": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/initializePolicy.test.ts",
"test:claim": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/claimFees.test.ts",
"test:distribute": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/distributeFees.test.ts",
"test:devnet": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/initializePolicy.test.ts",
"test:full": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/honoraryFullWorkflow.test.ts",
"test:full:bankrun": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/CreateInitializeClaimDistribute.test.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.0",
"@coral-xyz/borsh": "^0.32.1"
},
"type": "module",
"devDependencies": {
"@coral-xyz/anchor-errors": "^0.30.1",
"@solana/spl-token": "^0.4.8",
"@solana/spl-token-metadata": "^0.1.6",
"@solana/web3.js": "^1.95.3",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"solana-bankrun": "^0.4.0",
"solana-bankrun-linux-x64-gnu": "^0.4.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5"
}
}