forked from coinbase/coinbase-pro-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gdax",
"version": "0.4.4",
"author": "Coinbase",
"bugs": "https://github.com/coinbase/gdax-node/issues",
"contributors": [
{
"email": "[email protected]",
"name": "Peter Downs",
"url": "http://peterdowns.com"
},
{
"email": "[email protected]",
"name": "Maksim Stepanenko",
"url": "http://maksim.ms"
},
{
"email": "[email protected]",
"name": "Miha Rebernik",
"url": "http://miha.rebernik.info"
}
],
"dependencies": {
"bintrees": "1.0.1",
"num": "0.3.0",
"request": "2.81.0",
"ws": "3.0.0"
},
"description": "Client for the GDAX API",
"devDependencies": {
"eslint": "^4.0.0",
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"mocha": "3.4.2",
"nock": "9.0.13",
"prettier": "^1.4.4"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/coinbase/gdax-node",
"keywords": [
"API",
"bitcoin",
"coinbase",
"exchange",
"real-time",
"trading",
"websockets",
"gdax",
"ethereum"
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/coinbase/gdax-node.git"
},
"scripts": {
"test": "mocha --full-trace --ui tdd --bail --reporter spec tests/*.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
}
}