-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
35 lines (35 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
{
"name": "tradingview-udf-binance-node",
"version": "0.2.0",
"description": "Sample implementation of TradingView Charting Library UDF-compatible data source for Binance exchange",
"main": "./src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bergusman/tradingview-udf-binance-node.git"
},
"author": "Vitaly Berg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bergusman/tradingview-udf-binance-node/issues"
},
"homepage": "https://github.com/bergusman/tradingview-udf-binance-node#readme",
"keywords": [
"ohlcv",
"tradingview",
"udf",
"crypto",
"exchange",
"binance",
"api"
],
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.9.1",
"request": "^2.88.0"
}
}