-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 2.29 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
{
"name": "coin-wallets",
"version": "0.0.3",
"description": "One library to manage all cryptocurrencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"bin": "dist/cli.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node ./dist/index.js",
"lint": "eslint . --ext '.js,.jsx,.ts,.tsx,.md'",
"prettier": "prettier -c --write '**/*'",
"test": "jest --config jest.config.json --no-cache",
"prepublish": "npm run build && npm run lint && npm run prettier && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soulmachine/coin-wallets.git"
},
"keywords": [
"blockchain",
"cryptocurrency",
"trader"
],
"engines": {
"node": ">=10"
},
"author": "soulmachine",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/soulmachine/coin-wallets/issues"
},
"homepage": "https://github.com/soulmachine/coin-wallets",
"devDependencies": {
"@types/bitcore-lib": "^0.15.1",
"@types/bs58": "^4.0.1",
"@types/hdkey": "^0.7.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/node-fetch": "^2.5.5",
"@types/text-encoding": "0.0.35",
"@types/wif": "^2.0.1",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@dfuse/client": "^0.3.8",
"axios": "^0.19.2",
"bchaddrjs": "^0.4.5",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.1.7",
"bitcore-lib": "^8.16.0",
"bitcore-lib-cash": "^8.16.0",
"bs58": "^4.0.1",
"bsv": "^1.3.0",
"dotenv": "^8.2.0",
"eos-token-info": "^0.1.1",
"eosjs": "^20.0.3",
"eosjs-ecc": "^4.0.7",
"erc20-token-list": "0.0.2",
"ethers": "^4.0.45",
"hdkey": "^1.1.1",
"node-fetch": "^2.6.0",
"text-encoding": "^0.7.0",
"wif": "^2.0.6",
"yargs": "^15.2.0"
}
}