-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "@bitgo/smart-contracts",
"version": "2.4.0",
"description": "A library to build Ethereum smart contract function calls.",
"main": "dist/src/index.js",
"types": "dist/types/src/index.d.ts",
"browser": "dist/lib.js",
"scripts": {
"test": "mocha --exit -r ts-node/register --timeout 100000 --recursive 'test/**/*.ts'",
"build": "npm run build-ts && webpack --config webpack.config.js",
"build-ts": "tsc",
"lint": "TIMING=1 eslint --ignore-pattern dist/ --ext .ts --cache .",
"lint-fix": "TIMING=1 eslint --fix --ignore-pattern dist/ --ext .ts --cache .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitgo/smart-contracts.git"
},
"bugs": {
"url": "https://github.com/bitgo/smart-contracts/issues"
},
"homepage": "https://github.com/bitgo/smart-contracts#readme",
"dependencies": {
"ethers": "4.0.48",
"bignumber.js": "^9.0.1",
"ethereumjs-abi": "0.6.8",
"ethereumjs-util": "6.2.0",
"tronweb": "^4.1.0"
},
"devDependencies": {
"@types/ethereumjs-abi": "0.6.3",
"@types/expect": "24.3.0",
"@types/mocha": "5.2.7",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"bitgo": "11.1.1",
"eslint": "^7.32.0",
"expect": "24.9.0",
"mocha": "6.2.3",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.2.6",
"ts-node": "8.5.4",
"typescript": "^4.4.3",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
}
}