-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.22 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.22 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
36
37
38
{
"name": "tolk-bench",
"description": "Gas benchmarks 'Tolk vs FunC'",
"author": "TON Core",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-blockchain/tolk-bench.git"
},
"scripts": {
"clear": "rm -f bench-snapshots/*.last.json",
"test:all": "npm run clear && jest",
"bench:all": "npm run clear && jest -t bench",
"test:exact": "npm run clear && jest 07",
"bench:exact": "npm run clear && jest 07 -t bench",
"save": "node tests/bench-cli.js save",
"show": "node tests/bench-cli.js show",
"generate-readme": "node tests/bench-cli.js readme"
},
"devDependencies": {
"@ton/blueprint": "^0.40.0",
"@ton/core": "^0.61.0",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.39.0",
"@ton/test-utils": "^0.8.0",
"@ton/ton": "^15.3.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.2.5",
"jest": "^29.7.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"@ton/tolk-js": "=1.2.0",
"@ton-community/func-js": "^0.10.0",
"ansi-colors": "^4.1.3"
}
}