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 240
/
package.json
78 lines (78 loc) · 2.36 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
{
"name": "coinbase-pro-trading-toolkit",
"version": "0.4.0",
"description": "A trading toolkit for building advanced trading bots on the Coinbase Pro platform",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"lint": "tslint -c tslint.json -p . -t stylish",
"pretest": "yarn run build",
"build": "tsc -d -p .",
"coverage": "yarn run build && ./node_modules/.bin/nyc --reporter text-summary ./node_modules/.bin/mocha",
"coverage:report": "./node_modules/.bin/nyc report --reporter text-summary --reporter html && open coverage/index.html",
"test:mocha": "./node_modules/.bin/mocha",
"test": "yarn run lint && yarn run test:mocha",
"clean": "rm -fr build coverage .nyc_output",
"doc": "yarn run readme && ./node_modules/.bin/typedoc --options typedoc.json src/",
"readme": "node generate-md.js",
"prepublishOnly": "yarn run build"
},
"bin": {
"coinbaseProConsole": "./build/src/consoles/coinbaseProConsole.js"
},
"repository": {
"type": "git",
"url": "[email protected]:coinbase/coinbase-pro-trading-toolkit.git"
},
"keywords": [
"coinbase-pro",
"coinbase pro",
"trading",
"toolkit",
"bot",
"market-maker",
"arbitrage"
],
"author": "Cayle Sharrock <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/bintrees": "1.0.2",
"@types/commander": "2.3.31",
"@types/crypto-js": "3.1.32",
"@types/nock": "8.2.0",
"@types/node": "7.0.58",
"@types/query-string": "3.0.30",
"@types/simple-mock": "0.0.27",
"@types/superagent": "2.0.35",
"@types/winston": "2.3.9",
"@types/ws": "0.0.37",
"bignumber.js": "5.0.0",
"bintrees": "1.0.1",
"ccxt": "1.12.137",
"coinbase-pro": "0.9.0",
"commander": "2.9.0",
"limiter": "1.1.2",
"node-bittrex-api": "0.7.7",
"pushbullet": "2.0.0",
"querystring": "0.2.0",
"simple-mock": "0.8.0",
"simple-statistics": "5.1.0",
"superagent": "3.0.0",
"winston": "2.3.0",
"ws": "3.3.1"
},
"devDependencies": {
"@types/mocha": "2.2.33",
"expect.js": "0.3.1",
"markdown-magic": "0.1.20",
"markdown-magic-version-badge": "1.1.1",
"mocha": "3.2.0",
"nock": "9.0.2",
"nyc": "11.1.0",
"source-map-support": "0.4.16",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typedoc": "0.11.1",
"typescript": "^2.7.2"
}
}