forked from lizhengwei1989/tron-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.06 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
{
"name": "tronweb",
"version": "2.2.8",
"description": "JavaScript SDK that encapsulates the TRON Node HTTP API",
"main": "dist/TronWeb.node.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && webpack --config webpack.config.js --progress --colors",
"clean": "rimraf dist",
"example": "node ./examples/server",
"test:browser": "node scripts/test-browser.js && npx karma start --single-run --browsers ChromeHeadless,Firefox,Edge",
"test:node": "node scripts/test-node.js && node test/helpers/newAccounts 10 && npx mocha 'test/**/*.test.js'",
"test": "node test/helpers/newAccounts 5 && npm run-script test:browser && npm run-script test:node",
"build:dev": "NODE_ENV=development npm run build"
},
"husky": {
"hooks": {
"pre-push": "node ./scripts/pre-push.js"
}
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"bignumber.js": "^7.2.1",
"elliptic": "^6.4.1",
"ethers": "^4.0.7",
"eventemitter3": "^3.1.0",
"jssha": "^2.3.1",
"semver": "^5.6.0",
"validator": "^10.7.1"
},
"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-loader": "^8.0.2",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-source-map-support": "^2.0.1",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"eth-sig-util": "^2.1.0",
"globby": "^8.0.1",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.1",
"grunt-karma": "^3.0.0",
"husky": "^1.0.0-rc.14",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "4.0.0-rc.2",
"matchdep": "^2.0.0",
"mocha": "^5.2.0",
"puppeteer": "^1.8.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"author": {
"name": "Kondax",
"url": "https://github.com/Kondax"
},
"contributors": [
{
"name": "TRON",
"url": "https://github.com/tronprotocol"
}
],
"homepage": "https://github.com/tronprotocol/tron-web",
"license": "MIT",
"repository": "https://github.com/tronprotocol/tron-web.git"
}