forked from pagmovel/binance-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.01 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.01 KB
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
{
"name": "@marcius-capital/binance-api",
"version": "0.2.15",
"description": "Binance API (REST + WebSocket) for Node.js",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/marcius-capital/binance-api.git"
},
"scripts": {
"dev": "nodemon test.js"
},
"keywords": [
"node",
"nodejs",
"javascript",
"binance",
"binance-api",
"api",
"cryptocurrency",
"rest",
"websocket",
"ws",
"stream",
"marcius",
"marcius-capital"
],
"author": "Nikita Marcius <Telegram @nikitamarcius>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcius-capital/binance-api/issues"
},
"homepage": "https://github.com/marcius-capital/binance-api#readme",
"dependencies": {
"axios": "0.19.2",
"axios-cache-adapter": "2.5.0",
"ws": "7.2.1"
},
"devDependencies": {
"nodemon": "2.0.3"
},
"publishConfig": {
"access": "public"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}