-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@ton/test-utils",
"version": "0.12.0",
"main": "dist/index.js",
"license": "MIT",
"description": "Utilities for writing tests for smart contract systems in TON",
"author": "TonTech",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ton-org/test-utils"
},
"devDependencies": {
"@jest/globals": "^30.1.2",
"@ton/core": "^0.49.2",
"@ton/crypto": "^3.2.0",
"@ton/toolchain": "the-ton-tech/toolchain#v1.4.0",
"@types/bun": "^1.2.19",
"@types/chai": "^4.3.4",
"@types/jest": "^30.0.0",
"chai": "^4.3.7",
"eslint": "^9.28.0",
"expect": "^30.1.2",
"jest": "^30.1.3",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@jest/globals": "*",
"@ton/core": ">=0.49.2",
"@types/bun": ">=1.0.0",
"chai": "*"
},
"peerDependenciesMeta": {
"@jest/globals": {
"optional": true
},
"@types/bun": {
"optional": true
},
"chai": {
"optional": true
}
},
"dependencies": {
"node-inspect-extracted": "^2.0.0"
},
"prettier": "@ton/toolchain/prettier",
"scripts": {
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix",
"test": "jest",
"test:bun": "bun test",
"build": "rm -rf dist && tsc"
},
"packageManager": "yarn@3.6.1"
}