-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
121 lines (121 loc) · 2.98 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tronbox",
"namespace": "tronprotocol",
"version": "4.0.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": "find src -name '*.js' | xargs node_modules/.bin/eslint",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\""
},
"dependencies": {
"@noble/secp256k1": "1.7.1",
"@resolver-engine/imports-fs": "^0.3.3",
"@solidity-parser/parser": "^0.16.0",
"@truffle/contract-sources": "^0.1.12",
"@truffle/error": "0.2.2",
"@truffle/expect": "0.1.7",
"ajv": "^6.10.2",
"async": "2.6.4",
"axios": "^0.21.1",
"bignumber.js": "^7.2.1",
"chai": "4.1.2",
"chalk": "^2.4.1",
"chokidar": "^3.5.3",
"colors": "^1.1.2",
"cpr": "^0.4.3",
"debug": "^3.1.0",
"del": "^2.2.0",
"diff": ">=3.5.0",
"ethjs-abi": "0.1.8",
"finalhandler": "^1.1.2",
"find-up": "^4.1.0",
"fs-extra": "^8.1.0",
"github-download": "^0.5.0",
"graphlib": "^2.1.7",
"homedir": "^0.6.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"mocha": "10.2.0",
"node-dir": "0.1.17",
"original-require": "1.0.1",
"request": "^2.88.0",
"semver": "^7.5.4",
"serve-static": "^1.10.0",
"solc": "^0.8.21",
"source-map-support": "^0.5.3",
"spawn-args": "^0.1.0",
"superagent": "^5.1.0",
"temp": "^0.8.3",
"tronweb": "^5.3.0",
"tsort": "^0.0.1",
"vcsurl": "^0.1.1",
"web3": "1.10.4",
"web3-eth-contract": "1.10.4",
"yargs": "^15.4.1"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.6.3",
"eslint": "^6.6.0",
"eslint-plugin-node": "^10.0.0",
"glob": "^7.1.2",
"js-scrypt": "^0.2.0",
"meta-npm": "^1.2.7",
"prepend-file": "^1.3.1",
"prettier": "^2.8.5",
"tmp": "0.0.33",
"truffle-blockchain-utils": "^0.0.5"
},
"bin": {
"tronbox": "build/tronbox.js"
},
"engines": {
"node": ">=18.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": "[email protected]",
"url": "https://github.com/tcoulter"
},
{
"name": "alinger",
"email": "[email protected]"
},
{
"name": "Francesco Sullo",
"email": "[email protected]",
"url": "https://github.com/sullof"
},
{
"name": "Kang JianCheng",
"email": "[email protected]",
"url": "https://github.com/kjc233"
}
],
"publishConfig": {
"access": "public"
}
}