forked from kyranet/klasa-dashboard-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.33 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
{
"name": "klasa-dashboard-hooks",
"version": "1.0.0",
"description": "Klasa Dashboard Hooks: a simple plugin for the klasa bot framework that exposes an api for use in a frontend framework.",
"homepage": "https://klasa.js.org/",
"bugs": {
"url": "https://github.com/dirigeants/klasa-dashboard-hooks/issues"
},
"license": "MIT",
"author": "BDistin",
"main": "src/index.js",
"types": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dirigeants/klasa-dashboard-hooks.git"
},
"scripts": {
"lint": "npx eslint --fix src && npx eslint --fix --config .eslintrcmd.json --ext md guides",
"test:lint": "npx eslint src && npx eslint --config .eslintrcmd.json --ext md guides && npx markdownlint guides README.md",
"docs": "npx dg --source src --custom guides/.docconfig.json --output dist/docs.json --logging"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"peerDependencies": {
"discord.js": "^12.5.0",
"klasa": "github:helperdiscord/klasa"
},
"devDependencies": {
"@types/node": "^12.6.3",
"docgen": "github:dirigeants/docsgen",
"eslint": "^6.0.1",
"eslint-config-klasa": "github:dirigeants/klasa-lint",
"eslint-plugin-markdown": "^1.0.0",
"markdownlint-cli": "^0.17.0",
"typescript": "^3.6.3"
},
"engines": {
"node": ">=10.0.0"
}
}