This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
100 lines (100 loc) · 2.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "reknown",
"version": "3.1.2",
"description": "A Discord bot with created with Discord.JS (master branch).",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jyguy/Reknown.git"
},
"keywords": [
"discord-bot",
"discord-js"
],
"author": "Jyguy",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Jyguy/Reknown/issues"
},
"homepage": "https://github.com/Jyguy/Reknown#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"atob": "^2.1.2",
"btoa": "^1.2.1",
"cowsay": "^1.4.0",
"dateformat": "^3.0.3",
"dblapi.js": "^2.4.0",
"discord.js": "github:discordjs/discord.js",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"lavacord": "^1.1.7",
"mathjs": "^6.6.4",
"moment": "^2.24.0",
"ms": "^2.1.2",
"node-fetch": "^2.6.0",
"postgres": "Minigugus/postgres#feature/typescript",
"querystring": "^0.2.0",
"string-math": "^1.2.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/dateformat": "^3.0.1",
"@types/mathjs": "^6.0.5",
"@types/ms": "^0.7.31",
"@types/node": "^13.13.0",
"@types/node-fetch": "^2.5.6",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"typescript": "^3.8.3"
},
"optionalDependencies": {
"erlpack": "^0.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"scope-case": [
0
],
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"typings"
]
]
}
}
}