-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
51 lines (51 loc) · 1.25 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
51
{
"name": "tradingview-scraper",
"version": "1.0.4",
"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.2.3",
"typed-emitter": "^2.1.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/node": "^18.11.9",
"@types/randomstring": "^1.1.8",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"scripts": {
"build": "tsc",
"lint": "eslint ./src --fix",
"prepublish": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/imxeno/tradingview-scraper.git"
},
"author": "Piotr Adamczyk <xeno@xeno.yt>",
"license": "ISC"
}