forked from imxeno/tradingview-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 935 Bytes
/
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
{
"name": "tradingview-scraper",
"version": "0.3.0",
"description": "A gateway to TradingView's data for your Node.js application!",
"keywords": [
"tradingview",
"scraper",
"scraping",
"trading",
"view",
"ticker",
"prices",
"cryptocurrency",
"crypto",
"symbol",
"forex"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"randomstring": "^1.1.5",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/randomstring": "^1.1.6",
"@types/ws": "^6.0.4",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"scripts": {
"build": "tsc",
"lint": "tslint --project ./",
"prepublish": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/imxeno/tradingview-scraper.git"
},
"author": "Piotr Adamczyk <[email protected]>",
"license": "ISC"
}