-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.31 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
{
"dependencies": {
"@types/bitcoinjs-lib": "^5.0.0",
"@types/bn.js": "^5.1.0",
"@types/node": "^14.14.0",
"@types/secp256k1": "^4.0.2",
"bignumber.js": "^9.0.1",
"bip66": "^1.1.5",
"bn.js": "^5.2.0",
"buffer": "^5.1.0",
"buffer-reverse": "^1.0.1",
"chai": "^4.3.4",
"crypto": "^1.0.1",
"elliptic": "6.5.4",
"ethers": "^5.0.23",
"hash.js": "^1.1.7",
"pushdata-bitcoin": "^1.0.1",
"safe-buffer": "^5.1.1",
"secp256k1": "^4.0.2",
"typedarray-to-buffer": "^4.0.0",
"typeforce": "^1.18.0",
"typescript": "^4.1.2",
"varuint-bitcoin": "1.1.0",
"wif": "^2.0.6"
},
"name": "qtum-ethers-wrapper",
"version": "1.0.0",
"main": "./build/main/index.js",
"license": "",
"homepage": "https://github.com/qtumproject/qtum-ethers",
"repository": {
"type": "git",
"url": "[email protected]:earlgreytech/qtum-ethers"
},
"keywords": [
"Ethereum",
"ethers",
"QTUM"
],
"scripts": {
"build": "yarn build:main && yarn build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "mocha --exit --timeout 0 ./src/tests/*.tests.ts",
"clean": "rm -rf build"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"mocha": "^8.4.0"
}
}