This repository has been archived by the owner on Sep 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.65 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
67
68
69
70
{
"name": "@kryptopus/trading-bot",
"description": "Trading bot",
"version": "0.1.0",
"author": "neolao <[email protected]>",
"private": false,
"repository": "https://github.com/kryptopus/trading-bot.git",
"license": "MIT",
"engines": {
"node": ">= 10"
},
"dependencies": {
"@solfege/cli": "^5.0.0",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"binance": "^1.3.3",
"minimist": "^1.2.0",
"pm2": "^3.0.4",
"socket.io": "^2.1.1",
"solfegejs": "^4.0.0",
"tulind": "^0.8.13"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-node": "^7.0.1",
"jest": "^23.4.2",
"watch": "^1.0.2"
},
"scripts": {
"start": "pm2 startOrRestart ./ecosystem.config.js",
"stop": "pm2 stop ./ecosystem.config.js",
"list": "pm2 list",
"dashboard": "pm2 dashboard",
"prepare": "npm run lint",
"lint": "eslint --ignore-pattern \"**/*.test.js\" --format=node_modules/eslint-formatter-pretty bundle",
"test": "jest",
"watch": "watch 'echo \"\\033[41;37m LINT \\033[0m\"; npm run --silent lint' ./lib",
"prepublish": "npm run lint && npm test"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2019
},
"extends": [
"eslint:recommended",
"plugin:node/recommended"
],
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
}
]
}
},
"jest": {
"moduleFileExtensions": [
"js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"bundle/**/*.js"
],
"verbose": true,
"testURL": "http://localhost/"
}
}