-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 959 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
{
"license": "ISC",
"scripts": {
"compile": "tsc --project tsconfig.build.json",
"_copy-readme": "cp packages/ledger-utils/*.md build/packages/ledger-utils",
"build": "pnpm compile",
"test": "pnpm jest -- \"$FILE\"",
"lint": "gts lint",
"lint:fix": "gts fix",
"lint:clean": "gts clean",
"publish:ledger": "pnpm lint && pnpm build && pnpm publish build/packages/ledger-utils"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"gts": "^3.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"@marinade.finance/jest-utils": "^2.1.4"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"jest": "29"
}
}
}
}