This repository has been archived by the owner on Jan 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 317
/
package.json
86 lines (86 loc) · 1.84 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
83
84
85
86
{
"name": "coinbase-pro",
"version": "0.9.0",
"author": "Coinbase",
"bugs": "https://github.com/coinbase/coinbase-pro-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.48.1",
"bignumber.js": "^8.1.1",
"bintrees": "^1.0.1",
"request": "^2.81.0",
"ws": "^7.0.0"
},
"description": "Official client for the Coinbase Pro API",
"devDependencies": {
"eslint": "^5.16.0",
"husky": "^2.1.0",
"lint-staged": "^8.1.5",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"prettier": "~1.17.0"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/coinbase/coinbase-pro-node",
"keywords": [
"API",
"bitcoin",
"coinbase",
"exchange",
"real-time",
"trading",
"websockets",
"coinbase-pro",
"ethereum"
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/coinbase/coinbase-pro-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"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}