-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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": "discord-bot",
"version": "2.2.0",
"description": "LegiScan integration for Discord",
"main": "src/index.js",
"dependencies": {
"axios": "^0.21.1",
"consola": "^2.15.3",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"node-cron": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.0.6",
"jest-junit": "^12.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"scripts": {
"debug": "node --nolazy --inspect-brk",
"start": "nodemon",
"lint": "DEBUG=eslint:cli-engine eslint \"src/**/*.js\"",
"lint:fix": "npm run lint --fix",
"lint:conflicts": "eslint --print-config ./eslintrc.js | eslint-config-prettier-check",
"fmt": "prettier --write \"./**/*.{js,json}\"",
"fmt:check": "prettier --list-different \"./**/*.{js,json}\"",
"fix": "npm run fmt && npm run lint:fix",
"test": "jest",
"test:clear": "jest --clearCache",
"test:watch": "jest --watch",
"test:e2e": "jest --runInBand --config ./tests/jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fixmyrights/discord-bot.git"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/fixmyrights/discord-bot/issues"
},
"homepage": "https://github.com/fixmyrights/discord-bot#readme"
}