-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.42 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.42 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "tronbox",
"namespace": "tronprotocol",
"version": "4.6.0",
"description": "TronBox - Simple development framework for Tron",
"keywords": [
"TronBox",
"TRON",
"Solidity",
"Truffle",
"Contract"
],
"scripts": {
"build": "scripts/build.sh",
"test": "npm run build && cd test && sh runTest.sh",
"prepare": "npm run build",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\"",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\""
},
"dependencies": {
"@solidity-parser/parser": "0.20.2",
"ajv": "6.14.0",
"async": "2.6.4",
"axios": "1.13.6",
"bignumber.js": "7.2.1",
"chai": "4.1.2",
"chalk": "2.4.2",
"colors": "1.4.0",
"debug": "3.2.7",
"enquirer": "2.4.1",
"ethers": "6.15.0",
"find-up": "4.1.0",
"fs-extra": "8.1.0",
"glob": "13.0.6",
"graphlib": "2.1.8",
"homedir": "0.6.0",
"lodash": "4.17.23",
"mkdirp": "0.5.6",
"mocha": "11.7.4",
"node-dir": "0.1.17",
"original-require": "1.0.1",
"solc": "0.8.25",
"source-map-support": "0.5.21",
"tmp": "0.0.33",
"tronweb": "6.2.2",
"vcsurl": "0.1.1",
"yargs": "15.4.1",
"yauzl": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.28.3",
"@babel/core": "7.28.3",
"@babel/plugin-transform-runtime": "7.28.3",
"@babel/preset-env": "7.28.3",
"eslint": "9.39.1",
"eslint-plugin-n": "17.23.1",
"globals": "16.1.0",
"prettier": "2.8.8",
"tslib": "2.8.1"
},
"overrides": {
"mocha": {
"serialize-javascript": "7.0.3"
}
},
"bin": {
"tronbox": "build/tronbox.js"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tronprotocol/tronbox.git"
},
"homepage": "https://tronbox.io",
"bugs": {
"url": "https://github.com/tronprotocol/tronbox/issues"
},
"originalAuthor": "consensys.net",
"author": "tron.network",
"authors": [
{
"name": "Tim Coulter",
"email": "tim@timothyjcoulter.com",
"url": "https://github.com/tcoulter"
},
{
"name": "alinger",
"email": "alinger@forke.cn"
},
{
"name": "Francesco Sullo",
"email": "francesco@sullo.co",
"url": "https://github.com/sullof"
},
{
"name": "Kang JianCheng",
"email": "1063303665@qq.com",
"url": "https://github.com/kjc233"
}
],
"publishConfig": {
"access": "public"
}
}