-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "itswednesdaymydudesdiscordbot",
"version": "1.0.0",
"description": "Bot that will tell a channel that it is Wednesday and will link a \"It's Wednesday my dudes meme\" Edit",
"main": "bot.js",
"scripts": {
"flow": "flow",
"flow:status": "flow status",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "./node_modules/.bin/babel src/ -d build/ && node build/bot.js",
"test": "npm run lint && jest && codecov -t 09bc5760-6a3d-4d4b-a5c8-08187d0fb57c",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brooksbecton/ItsWednesdayMyDudesDiscordBot.git"
},
"keywords": [
"discord",
"bot",
"js",
"node"
],
"author": "Brooks Becton",
"license": "MIT",
"bugs": {
"url": "https://github.com/brooksbecton/ItsWednesdayMyDudesDiscordBot/issues"
},
"homepage": "https://github.com/brooksbecton/ItsWednesdayMyDudesDiscordBot#readme",
"dependencies": {
"@types/jest": "^24.0.24",
"discord.js": "13.0.0",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.0",
"node-schedule": "^1.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-preset-flow": "^6.23.0",
"codecov": "^3.6.1",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.19.1",
"flow-bin": "^0.114.0",
"flow-typed": "^2.6.2",
"jest": "^24.9.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}