-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
{
"name": "guanaco",
"version": "0.0.4",
"description": "A cute and cuddly cryptocurrency quant trading engine in TypeScript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tst/**/*.spec.ts",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Anthony Krivonos",
"bugs": "https://github.com/anthonykrivonos/guanaco/issues",
"homepage": "https://github.com/anthonykrivonos/guanaco#readme",
"license": "MIT",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/form-data": "^2.5.0",
"@types/node-cron": "^2.0.2",
"coinbase-pro": "^0.9.0",
"gemini-api": "github:anthonykrivonos/gemini-api-node",
"node-cron": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "~1.6.0",
"typescript": "^3.5.3"
},
"keywords": [
"typescript",
"javascript",
"js",
"ts",
"algorithmic",
"algo",
"quantitative",
"quant",
"trading",
"trade",
"cryptocurrencies",
"cryptocurrency",
"crypto",
"bitcoin",
"coin",
"gemini-api",
"gemini",
"coinbase",
"client",
"cron"
]
}