forked from COVID-Response-Collective/covid-data-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "covid-data-bot",
"repository": "https://github.com/COVID-Response-Collective/covid-data-bot",
"version": "0.0.1",
"description": "Discord bot that speaks out COVID-19 data provided by Johns Hopkins University.",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"pretest": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix"
},
"author": "Meredith Mello",
"contributors": [
"Omeed Habibelahian"
],
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"eris": "^0.11.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-schedule": "^1.3.2",
"novelcovid": "^1.0.6",
"voca": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretest"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix",
"git add"
]
}
}