-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1019 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
42
43
44
45
{
"name": "bittrex-rest-client",
"version": "2.0.6",
"description": "Bittrex RestAPI client for Node.js",
"author": "libertas-primordium@github",
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">=8.10.0"
},
"keywords": [
"bittrex",
"crypto",
"exchange",
"rest",
"nodejs",
"axios",
"https"
],
"repository": {
"url": "git https://github.com/libertas-primordium/bittrex-rest-client.git"
},
"dependencies": {
"axios": "^0.21.1",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"uuid-random": "^1.3.2"
},
"devDependencies": {
"eslint": "^7.21.0",
"mocha": "^6.2.3",
"should": "13.2.3"
},
"scripts": {
"lint": "npx eslint ./",
"test": "npx mocha --slow 500 --timeout 5000 ./test"
},
"bugs": {
"url": "https://github.com/libertas-primordium/bittrex-rest-client/issues"
},
"homepage": "https://github.com/libertas-primordium/bittrex-rest-client#readme",
"directories": {
"test": "test"
}
}