forked from tonwhales/ton-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 975 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
{
"name": "ton-crypto",
"version": "3.2.0",
"repository": "https://github.com/ex3ndr/ton-crypto.git",
"author": "Steve Korshakov <steve@korshakov.com>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -fr dist && tsc --declaration",
"test": "jest && karma start --single-run",
"release": "yarn build && yarn test && yarn 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": {
"jssha": "3.2.0",
"ton-crypto-primitives": "2.0.0",
"tweetnacl": "1.0.3"
}
}