-
-
Notifications
You must be signed in to change notification settings - Fork 265
/
package.json
89 lines (89 loc) · 2.41 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "binance",
"version": "2.13.13",
"description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"index.js"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf lib dist",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"build:watch": "npm run clean && tsc --watch",
"pack": "webpack --config webpack/webpack.config.js",
"prepublishOnly": "npm run build:clean",
"betapublish": "npm publish --tag beta"
},
"author": "Tiago Siebler (https://github.com/tiagosiebler)",
"contributors": [
"Zoey Garvey",
"Clifford Roche <clifford.roche@gmail.com> (http://www.cliffordroche.ca)",
"Aslam Hadi H <aslamhadi@gmail.com> (https://www.commitcode.com)",
"Andrey Vorobyov <vorandrew@gmail.com>",
"Dylan Sproule (https://github.com/dylansproule)",
"Gavy Aggarwal (http://gavyaggarwal.com/)",
"Tony Pettigrew (https://github.com/NeverEnder4)",
"Chris <apexearth@gmail.com> (https://github.com/apexearth)",
"Bruno Lobo <me@brunolobo.xyz> (https://brunolobo.xyz)",
"0xSmartCrypto <0xsmartcrypto@gmail.com> (https://twitter.com/0xSmartCrypto)"
],
"dependencies": {
"axios": "^1.6.2",
"isomorphic-ws": "^4.0.1",
"nanoid": "^3.1.30",
"ws": "^7.4.0"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "20.9",
"eslint": "^7.10.0",
"jest": "^29.1.1",
"ts-jest": "^29.1.1",
"typescript": "^4.7.4"
},
"optionalDependencies": {
"https-proxy-agent": "^6.1.0",
"source-map-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"webpack": "^5.4.0"
},
"keywords": [
"binance",
"binance api",
"binance futures api",
"binance spot api",
"binance margin api",
"api",
"websocket",
"rest",
"rest api",
"inverse",
"linear",
"usdt",
"trading bots",
"nodejs",
"node",
"trading",
"cryptocurrency",
"bitcoin",
"best"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/tiagosiebler"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiagosiebler/binance"
},
"bugs": {
"url": "https://github.com/tiagosiebler/binance/issues"
},
"homepage": "https://github.com/tiagosiebler/binance#readme"
}