-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "coinbot",
"version": "0.2.1",
"description": "coinbase recommendation bot",
"main": "src/index.js",
"scripts": {
"go": "ENV=production node index.js",
"home": "HOME=true node index.js",
"dev": "HOME=true TESTING=true nodemon index.js",
"test": "npm run flow && npm run jest",
"jest": "jest",
"jw": "TESTING=true node_modules/.bin/jest --watch",
"flow": "flow --show-all-errors",
"format": "prettier --write index.js 'src/**/*.js'"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"chalk": "^1.1.3",
"dotenv": "^4.0.0",
"gdax": "^0.4.2",
"jsonfile": "^3.0.1",
"moment": "^2.18.1",
"twilio": "^3.4.0"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.48.0",
"flow-remove-types": "^1.2.1",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"prettier": "^1.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awitherow/coinbot.git"
},
"keywords": ["nodejs", "gdax", "bitcoin", "ethereum", "bot"],
"author": "Austin Witherow",
"license": "ISC",
"bugs": {
"url": "https://github.com/awitherow/coinbot/issues"
},
"homepage": "https://github.com/awitherow/coinbot#readme",
"engines": {
"node": "7.8.0"
}
}