-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "trailing-stop-order",
"version": "0.0.1",
"description": "Implements a trailing stop order for cryptocurrencies",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"monitor": "ts-node monitor.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Darksoulsong/trailing-stop-order.git"
},
"keywords": [
"crypto",
"trailing",
"stop",
"order"
],
"author": "Thyago Weber <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Darksoulsong/trailing-stop-order/issues"
},
"homepage": "https://github.com/Darksoulsong/trailing-stop-order#readme",
"dependencies": {
"date-fns": "^1.29.0",
"forever-monitor": "^1.7.1",
"handlebars": "^4.0.11",
"minimist": "^1.2.0",
"node-binance-api": "^0.4.17",
"pushbullet": "^2.1.0",
"request-promise": "^4.2.2",
"ts-node": "^5.0.0",
"typescript": "^2.7.2",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"@types/node": "^9.4.6",
"@types/winston": "^2.3.8"
}
}