-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "tradingview-ws",
"version": "0.0.3",
"description": "Tradingview websocket API",
"repository": "https://github.com/endenwer/tradingview-ws.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"README.MD"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run typecheck && npm run test && npm run build",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"typecheck": "tsc --noEmit"
},
"author": "Stepan Lusnikov <[email protected]>",
"license": "MIT",
"keywords": [
"tradingview",
"scraper",
"scraping",
"websocket",
"candlestick"
],
"dependencies": {
"axios": "^0.25.0",
"randomstring": "^1.2.2",
"ws": "^8.4.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@types/randomstring": "^1.1.8",
"@types/ws": "^8.2.2",
"chai": "^4.3.6",
"mocha": "^9.2.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}