forked from tronprotocol/tronweb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 3.08 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
{
"name": "@sterliakov/tstron",
"version": "0.1.0-alpha.2",
"description": "TypeScript SDK that encapsulates the TRON HTTP API",
"scripts": {
"build": "npm run clean && npx genversion --es6 --semi version.js && tsc && webpack && echo '{\"type\": \"commonjs\"}' > lib/package.json",
"prepack": "npm run build",
"clean": "rimraf dist lib",
"newaccount": "npx ts-node test/helpers/newAccounts 50",
"do-test": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' npx nyc mocha --colors -r ts-node/register -r source-map-support/register --timeout 180000",
"test": "npm run-script newaccount && npm run-script do-test 'test/*/**.test.ts'",
"test:local": "npm run-script newaccount && npm run-script do-test -- -g '\\[ONLINE\\]' --invert 'test/*/**.test.ts'",
"test:online": "npm run-script do-test -- -g '\\[ONLINE\\]' 'test/*/**.test.ts'",
"test:browser": "npm run-script newaccount && npx karma start --single-run --browsers ChromeHeadless",
"coverage": "npm run-script test:browser && npm run-script test",
"btest": "npm run build:dev && npm run test"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@ethersproject/hdnode": "^5.7.0",
"axios": "^0.26.1",
"bignumber.js": "^9.0.1",
"elliptic": "^6.5.4",
"ethers": "^5.7.1",
"eventemitter3": "^3.1.0",
"injectpromise": "^1.0.0",
"lodash": "^4.17.21",
"querystring-es3": "^0.2.1",
"semver": "^5.6.0",
"ts-proto": "^1.131.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.18.6",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/validator": "^13.7.8",
"babel-loader": "^9.1.0",
"babel-plugin-source-map-support": "^2.1.3",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"genversion": "^3.1.1",
"globby": "^13.1.2",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"author": {
"name": "Stanislav Terliakov",
"url": "https://github.com/sterliakov",
"email": "[email protected]"
},
"homepage": "https://github.com/sterliakov/tronweb",
"license": "MIT",
"repository": "https://github.com/sterliakov/tronweb.git",
"files": [
"dist/**/*",
"lib"
],
"types": "./lib/src/index.d.ts",
"main": "./lib/src/index.js"
}