-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "crypto-trader",
"version": "0.1.2",
"description": "A command line tool for diversifying your portfolio on crypto currency exchanges (poloniex, bittrex).",
"main": "lib/run-cli.js",
"bin": {
"crypto-trader": "bin/crypto-trader.js"
},
"author": "Charles-Philippe Clermont @charlespwd",
"license": "MIT",
"engine": {
"node": ">=8.0.0"
},
"scripts": {
"build": "rm -rf lib && tsc -p . --outDir lib",
"devel": "NODE_ENV=devel yarn watch",
"precommit": "tslint -t verbose src/**",
"start": "NODE_ENV=devel ts-node src/run-cli.ts",
"test": "multi='spec=-' mocha src/**/*.spec.ts",
"test:watch": "multi='mocha-notifier-reporter=- spec=-' mocha --watch src/**/*.spec.ts",
"watch": "NODE_ENV=devel nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/run-cli.ts"
},
"dependencies": {
"cli-table": "^0.3.1",
"coinbase": "^2.0.6",
"colors": "^1.1.2",
"lodash.throttle": "^4.1.1",
"moment": "^2.18.1",
"nodemon": "^1.11.0",
"prompt": "^1.0.0",
"query-string": "^4.3.4",
"ramda": "^0.24.1",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"vorpal": "^1.12.0",
"yesno": "^0.0.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.2",
"@types/query-string": "^4.3.1",
"@types/ramda": "^0.24.11",
"@types/request-promise-native": "^1.0.5",
"@types/sinon": "^2.3.4",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"husky": "^0.14.3",
"mocha": "^3.5.3",
"mocha-multi": "^0.11.0",
"mocha-notifier-reporter": "^0.1.2",
"sinon": "^4.0.1",
"sinon-chai": "^2.13.0",
"ts-node": "^3.1.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.2.1",
"typescript": "^2.5.2"
}
}