forked from dirigeants/klasa-member-gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.37 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.37 KB
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
{
"name": "@pengubot/kmg",
"version": "0.0.1-dev",
"description": "Klasa Member Gateway: a simple plugin for the klasa bot framework that adds an efficient per-member settings gateway.",
"homepage": "https://klasa.js.org/",
"bugs": {
"url": "https://github.com/dirigeants/klasa-member-gateway/issues"
},
"license": "MIT",
"author": "Dirigeants",
"main": "src/index.js",
"types": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dirigeants/klasa-member-gateway.git"
},
"scripts": {
"lint": "npx eslint --fix src && npx eslint --fix --config .eslintrcmd.json --ext md guides && npx tslint --fix 'typings/*.ts'",
"test:lint": "npx eslint src && npx tslint 'typings/*.ts' && 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"
},
"peerDependencies": {
"discord.js": "^12.3.1",
"klasa": "github:pengubot/klasa#stable"
},
"devDependencies": {
"@types/node": "^12.12.21",
"docgen": "github:dirigeants/docsgen",
"eslint": "^5.16.0",
"eslint-config-klasa": "github:dirigeants/klasa-lint",
"eslint-plugin-markdown": "^1.0.2",
"markdownlint-cli": "^0.15.0",
"tslint": "^5.20.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=8.6.0"
}
}