-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 999 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 999 Bytes
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
{
"name": "binance.js",
"version": "1.1.8",
"description": "An API wrapper for Binance. Build your application faster !",
"main": "dist/Binance.js",
"module": "dist/Binance.js",
"scripts": {
"build": "tsc -p .",
"dev": "tsc -p . -w",
"test": "jest"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"types": "dist/Binance.d.ts",
"keywords": [
"binance",
"binance api",
"cryptocurrency",
"crypto",
"bitcoin",
"ethereum",
"btc",
"eth"
],
"author": "Vincent Riva <vincent.riva@outlook.fr>",
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/ws": "^7.2.9",
"dotenv": "^8.2.0",
"jest": "^26.6.1",
"ts-jest": "^26.4.3",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"dependencies": {
"crypto-js": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^4.0.1",
"ws": "^7.3.1"
}
}