-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.03 KB
/
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
{
"name": "ton-tl",
"version": "1.0.1",
"repository": "https://github.com/ton-foundation/ton-tl.git",
"author": "Whales Corp. <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -fr dist && tsc --declaration",
"test": "jest",
"release": "yarn build && yarn test && npm publish"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"buffer": "^6.0.3",
"expect": "^27.1.0",
"jest": "^27.1.0",
"jest-mock": "^27.1.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.2",
"karma-webpack": "^5.0.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.51.2"
},
"dependencies": {
"@types/bn.js": "^5.1.0",
"@types/pegjs": "^0.10.3",
"bn.js": "^5.2.0",
"case-shift": "^2.5.3",
"crc-32": "^1.2.2",
"pegjs": "^0.10.0"
},
"packageManager": "[email protected]"
}