-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "@kcp/raw-events",
"version": "1.1.0",
"description": "A simple Raw Event Plugin that adds a simpler way to tap into raw events using klasa",
"homepage": "https://github.com/KlasaCommunityPlugins/raw-events",
"bugs": {
"url": "https://github.com/KlasaCommunityPlugins/raw-events/issues"
},
"license": "MIT",
"author": "KlasaCommunityPlugins",
"contributors": [
"QuantumlyTangled"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/KlasaCommunityPlugins/raw-events.git"
},
"scripts": {
"test:lint": "yarn tslint 'src/*.ts' && yarn eslint --config .eslintrcmd.json --ext md guides && yarn markdownlint guides README.md",
"build": "yarn tsc",
"docs": "yarn build && yarn dg --source dist --custom guides/.docconfig.json --output dist/docs.json --logging"
},
"peerDependencies": {
"discord.js": "github:discordjs/discord.js#master",
"klasa": "github:dirigeants/klasa#master"
},
"devDependencies": {
"@kcp/lint": "github:KlasaCommunityPlugins/lint-files",
"@types/node": "^12.0.0",
"@types/ws": "^6.0.1",
"discord.js": "discordjs/discord.js",
"docgen": "github:dirigeants/docsgen",
"eslint": "^5.16.0",
"eslint-config-klasa": "github:dirigeants/klasa-lint",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"klasa": "dirigeants/klasa",
"markdownlint-cli": "^0.15.0",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
},
"engines": {
"node": ">=10.1.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}