forked from SerekKiri/CoinBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "coinbot",
"version": "0.7.0",
"description": "Crypto bot",
"main": "./src/index.js",
"dependencies": {
"axios": "^0.18.0",
"debug": "^3.1.0",
"discord.js": "^11.3.2",
"plotly": "^1.0.6",
"turndown": "^4.0.2",
"unix-timestamp-transform": "0.0.5"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"jest": "^22.4.3",
"nodemon": "^1.17.3",
"supertest": "^3.0.0"
},
"scripts": {
"start": "nodemon src/index.js",
"lint": "eslint --ext .js, src test",
"lint:fix": "eslint --ext .js, --fix src test",
"test": "jest --forceExit --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/animek66/coin_bot"
},
"author": "animek66",
"license": "MIT",
"bugs": {
"url": "https://github.com/animek66/coin_bot/issues"
},
"homepage": "https://github.com/animek66/coin_bot/blob/master/README.md",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"node"
]
}
}