-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1000 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
44
45
46
{
"name": "@ton/test-utils",
"version": "0.4.2",
"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": "^29.5.0",
"@ton/core": "^0.49.2",
"@ton/crypto": "^3.2.0",
"@types/chai": "^4.3.4",
"@types/jest": "^29.4.4",
"chai": "^4.3.7",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@jest/globals": "*",
"@ton/core": ">=0.49.2",
"chai": "*"
},
"peerDependenciesMeta": {
"@jest/globals": {
"optional": true
},
"chai": {
"optional": true
}
},
"dependencies": {
"node-inspect-extracted": "^2.0.0"
},
"scripts": {
"build": "rm -rf dist && jest && tsc"
},
"packageManager": "[email protected]"
}