This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
{
"name": "@allmywallets/providers",
"version": "0.0.0-development",
"description": "Library to retrieve balances and transactions from a variety of cryptocurrencies explorers and exchanges.",
"main": "index.js",
"scripts": {
"test": "ava --timeout 20000",
"test-defi": "ava --timeout 20000 /home/coac/Projects/amw/providers/test/BSCDeFiTest.js",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"ava": {
"files": [
"!test/fixtures.js"
]
},
"author": "Victor Le",
"license": "MIT",
"url": "https://github.com/allmywallets/providers",
"repository": {
"type": "git",
"url": "https://github.com/allmywallets/providers.git"
},
"keywords": [
"providers",
"cryptocurrency",
"exchange",
"blockchain"
],
"dependencies": {
"ccxt": "^1.42.49",
"cryptocurrencies": "^7.0.0",
"ethereum-input-data-decoder": "^0.3.1",
"etherscan-api": "^10.0.5",
"node-fetch": "^2.6.1",
"nonce": "^1.0.4",
"url-search-params": "^1.1.0",
"web3": "1.2.7"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@semantic-release/changelog": "^5.0.1",
"ava": "^3.15.0",
"eslint": "^7.21.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"semantic-release": "^17.4.0",
"standard": "^16.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}