-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "crypto-exchange",
"version": "3.0.2",
"description": "Pulls together list of crypto exchanges to interact with their API's in a uniform fashion.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"version": "./update-version.js && git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/passabilities/crypto-exchange.git"
},
"keywords": [
"crypto",
"exchange",
"api",
"bitcoin",
"altcoin",
"library",
"bittrex",
"btc-e",
"gdax",
"gemini",
"kraken",
"liqui",
"poloniex",
"yunbi"
],
"author": "Noah Passalacqua",
"license": "MIT",
"bugs": {
"url": "https://github.com/passabilities/crypto-exchange/issues"
},
"homepage": "https://github.com/passabilities/crypto-exchange#readme",
"dependencies": {
"binance-api-node": "^0.7.4",
"bitfinex": "^1.0.3",
"bitstamp": "^1.0.1",
"coinbase": "^2.0.6",
"gdax": "^0.4.2",
"gemini-api": "github:passabilities/gemini-api-node#deposit-address",
"kraken-api": "^0.1.7",
"lodash": "^4.17.4",
"node.bittrex.api": "^0.3.3",
"node.liqui.io": "^1.1.0",
"poloniex-api-node": "^1.3.1",
"prepend-file": "^1.3.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"yunbi-api-module": "^1.0.4"
},
"devDependencies": {
"should": "^13.2.1",
"mocha": "*"
}
}