forked from coinbase/coinbase-pro-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.74 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
75
76
77
78
79
80
81
82
{
"name": "gdax",
"version": "0.8.0",
"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": {
"@types/request": "2.47.0",
"bignumber.js": "^6.0.0",
"bintrees": "^1.0.1",
"request": "^2.81.0",
"ws": "^4.0.0"
},
"description": "Client for the GDAX API",
"devDependencies": {
"eslint": "^4.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"mocha": "^5.0.0",
"nock": "^9.0.13",
"prettier": "~1.13.5"
},
"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": {
"lint": "eslint --ext .js ./",
"prettier": "prettier -l *.js **/*.js",
"prettier-write": "npm run prettier -- --write",
"test": "mocha --full-trace --ui tdd --bail --reporter spec tests/*.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json}": [
"prettier --write",
"git add"
]
}
}