-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "coin-signals-trader",
"version": "1.0.0",
"description": "A bot for buying and selling cryptocurrencies",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/nodemon -e js,hbs ./index.js",
"seed": "node seed.js",
"test": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/snollygolly/coin-signals-trader.git"
},
"author": "snollygolly (@snollygolly)",
"license": "ISC",
"bugs": {
"url": "https://github.com/snollygolly/coin-signals-trader/issues"
},
"homepage": "https://github.com/snollygolly/coin-signals-trader#readme",
"dependencies": {
"bluebird": "^3.5.0",
"chai": "^4.1.1",
"cheerio": "^1.0.0-rc.2",
"co": "^4.6.0",
"cradle": "^0.7.1",
"crypto-js": "^3.1.9-1",
"mocha": "^3.5.0",
"moment": "^2.18.1",
"node-telegram-bot-api": "^0.27.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"slackbots": "^1.0.2",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^4.12.0",
"nodemon": "^1.11.0"
}
}