forked from avasnap/cchainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 988 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 988 Bytes
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
{
"name": "avalanche-chainlink-prices",
"version": "1.0.0",
"description": "Command line tool to fetch all Avalanche Chainlink feed prices via Multicall3",
"main": "multicall_price_fetcher.js",
"scripts": {
"start": "node multicall_price_fetcher.js",
"prices": "node multicall_price_fetcher.js",
"refresh": "node scripts/refresh-feeds.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"bin": {
"avax-prices": "./multicall_price_fetcher.js"
},
"dependencies": {
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"ethers": "^6.8.1"
},
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 30000,
"collectCoverageFrom": [
"*.js",
"scripts/*.js",
"!test/**"
]
},
"keywords": [
"chainlink",
"avalanche",
"price-feeds",
"multicall",
"defi"
],
"author": "Avasnap",
"license": "MIT"
}