-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 948 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
36
37
38
39
40
41
{
"name": "bittrex-orderbook",
"version": "2.0.9",
"description": "Follow the Bittrex orderbook in real time",
"main": "dist/src/index.js",
"dependencies": {
"cloudscraper": "^1.4.1",
"signalr-client": "^0.0.17",
"winston": "^2.3.1"
},
"devDependencies": {
"bmocha": "^0.1.8",
"typescript": "^3.2.2"
},
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc -w",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "bmocha --exit dist/test/*.js"
},
"keywords": [
"bittrex",
"orderbook",
"bitcoin",
"ethereum",
"cryptocurrency",
"exchange"
],
"author": "gtklocker",
"license": "MIT",
"url": "https://github.com/gtklocker/bittrex-orderbook/issues",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/gtklocker/bittrex-orderbook.git"
},
"files": [
"/dist/src/"
]
}