forked from ton-core/ton-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 790 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
{
"name": "ton-compiler",
"version": "2.3.0",
"description": "TON compiler binaries",
"main": "dist/index.js",
"repository": "https://github.com/ton-core/ton-compiler.git",
"author": "Whales Corp. <developers@whalescorp.com>",
"license": "MIT",
"files": [
"dist/**/*",
"bin/**/*"
],
"bin": "./bin/ton-compiler",
"scripts": {
"release": "rm -fr dist && tsc && jest && yarn publish"
},
"dependencies": {
"arg": "^5.0.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/node": "16.10.2",
"@types/tmp": "^0.2.1",
"babel-jest": "^27.2.4",
"jest": "^27.2.4",
"typescript": "4.4.3"
}
}