forked from everx-labs/everdev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "tondev",
"version": "0.8.1",
"description": "TON Dev Environment",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tonlabs/tondev.git"
},
"scripts": {
"prepublishOnly": "npm i && tsc",
"tondev": "node ./cli.js",
"test": "jest -i"
},
"bin": {
"tondev": "./cli.js"
},
"keywords": [
"Free",
"TON",
"Freeton",
"Dev",
"Development",
"TONOS"
],
"author": "TON DEV SOLUTIONS LTD.",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"homepage": "https://docs.ton.dev/",
"engines": {
"node": ">=6"
},
"dependencies": {
"@tonclient/appkit": "^0",
"@tonclient/core": "^1",
"@tonclient/lib-node": "^1",
"dockerode": "3.2.1",
"fs-extra": "^9.1.0",
"mv": "^2.1.1",
"request": "^2.88.2",
"unzip-stream": "^0.3.1"
},
"devDependencies": {
"@types/dockerode": "^3.2.2",
"@types/fs-extra": "^9.0.8",
"@types/mv": "^2.1.1",
"@types/node": "^12.12.6",
"@types/request": "^2.48.5",
"@types/unzip-stream": "^0.3.0",
"caxa": "^1.0.0",
"typescript": "^4.1.3",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"jest": "^27.0.6",
"ts-jest": "^27.0.3"
}
}