-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "steem-price-feed",
"version": "0.0.1",
"description": "Update steemfeed price with coingecko API and Websocket & fallback",
"dependencies": {
"chalk": "^2.4.2",
"dotenv": "^8.0.0",
"dsteem": "^0.11.2",
"fs-extra": "^8.0.1",
"ws": "^7.0.1"
},
"devDependencies": {
"@types/bytebuffer": "^5.0.40",
"@types/dotenv": "^6.1.1",
"@types/fs-extra": "^7.0.0",
"@types/inquirer": "6.0.3",
"@types/jest": "^24.0.13",
"@types/node-fetch": "^2.3.5",
"@types/ws": "^6.0.1",
"commander": "^2.20.0",
"inquirer": "^6.3.1",
"jest": "^24.8.0",
"node-fetch": "^2.6.0",
"ora": "^3.4.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"keywords": [
"steem"
],
"author": "CoinGecko",
"license": "MIT",
"files": [
"lib"
],
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/coingecko/steemprice-feed.git"
},
"bugs": {
"url": "https://github.com/coingecko/steemprice-feed/issues"
},
"homepage": "https://github.com/coingecko/steemprice-feed#readme"
}