forked from nocaremc/nodex-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 827 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
{
"name": "nodex-ws",
"version": "1.0.0",
"description": "A Node.js library for interacting with the Bitshares decentralized exchange (DEX) using websockets",
"main": "index.js",
"directories": {
"test": "test",
"src": "src"
},
"scripts": {
"test": "mocha --use_strict",
"start": "node app.js --use_strict"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nocaremc/nodex-ws.git"
},
"author": "Joshua Rodarte",
"license": "MIT",
"bugs": {
"url": "https://github.com/nocaremc/nodex-ws/issues"
},
"homepage": "https://github.com/nocaremc/nodex-ws#readme",
"dependencies": {
"collections": "^5.1.2",
"dotenv": "^4.0.0",
"request-json": "^0.6.2",
"ws": "^4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.1"
}
}