-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
{
"name": "@coinspace/cs-binance-smart-chain-wallet",
"version": "1.1.7",
"description": "Binance Smart Chain Wallet for Coin app",
"author": "Coin Crypto Wallet <[email protected]> (https://coin.space/)",
"license": "MIT",
"main": "./index.js",
"type": "module",
"scripts": {
"lint": "eslint lib test index.js",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/CoinSpace/cs-binance-smart-chain-wallet.git"
},
"dependencies": {
"@ethereumjs/common": "^2.6.5",
"@ethereumjs/tx": "^3.5.2",
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"ethereumjs-util": "^7.1.5",
"ethereumjs-wallet": "^1.0.2",
"hdkey": "^2.0.1"
},
"devDependencies": {
"eslint": "^8.10.0",
"eslint-config-coinspace": "^1.2.2",
"mocha": "^9.2.2"
},
"eslintConfig": {
"extends": [
"coinspace"
],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2022,
"requireConfigFile": false,
"sourceType": "module"
},
"overrides": [
{
"files": [
"*.test.js",
"test/*"
],
"env": {
"mocha": true
}
}
]
}
}