forked from krystianity/node-bitstamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "node-bitstamp",
"version": "3.0.0",
"description": "bitstamp rest and websocket v1 and v2 api client",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"example:api": "node ./example/api.js",
"example:stream": "node ./example/stream.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krystianity/node-bitstamp.git"
},
"keywords": [
"bitstamp",
"btc",
"bitcoin",
"api",
"client",
"v1",
"v2",
"litecoin",
"ethereum",
"eth",
"xrp",
"ripple",
"withdrawal",
"transfer",
"order",
"cluster",
"ticker",
"books"
],
"author": "Christian Froehlingsdorf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/krystianity/node-bitstamp/issues"
},
"homepage": "https://github.com/krystianity/node-bitstamp#readme",
"dependencies": {
"bluebird": "~3.5.3",
"debug": "~4.1.0",
"reconnecting-websocket": "^4.4.0",
"request": "~2.88.0",
"ws": "^7.3.1"
}
}