forked from TridentBot/klasa-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 870 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 870 Bytes
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
{
"name": "klasa-api",
"version": "0.0.1",
"description": "Klasa API: A simple api interface for klasa bots",
"homepage": "https://klasa.js.org/",
"bugs": {
"url": "https://github.com/TridentBot/klasa-api/issues"
},
"license": "MIT",
"author": "BDistin",
"main": "src/index.js",
"types": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/TridentBot/klasa-api.git"
},
"scripts": {
"lint": "eslint --fix src",
"test:lint": "eslint src"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"peerDependencies": {
"discord.js": "discordjs/discord.js",
"klasa": "github:dirigeants/klasa#master"
},
"devDependencies": {
"@types/node": "^12.0.4",
"eslint": "^5.16.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"typescript": "^3.5.1"
}
}