-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1008 Bytes
/
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
{
"name": "sol-parser",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" && prettier --write \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"testMatch": [
"**/tests/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@noble/hashes": "^1.5.0",
"@solana/web3.js": "^1.95.3",
"bs58": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5"
}
}