-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "uniprices",
"version": "1.0.3",
"description": "Get current and historical prices from uniswap decentralized exchange. Request prices by block number, by date, or request price trend for the last 6 months.",
"keywords": [
"ethereum",
"blockchain",
"web3",
"eth",
"dapp",
"utilties",
"uniswap",
"dex",
"cryptocurrency"
],
"main": "./lib/uniprices.js",
"homepage": "https://github.com/monosux/uniprices",
"repository": {
"type": "git",
"url": "https://github.com/monosux/uniprices.git"
},
"bugs": {
"url": "https://github.com/monosux/uniprices/issues"
},
"author": "Sergey Alexeev <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"mocha": "^8.0.1",
"web3": "^1.2.7"
},
"scripts": {
"build": "babel src -d lib --copy-files",
"test": "mocha && npm run lint",
"lint": "eslint src"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"ethereum-block-by-date": "^1.2.4"
},
"browserslist": [
"last 2 chrome versions",
"maintained node versions"
]
}