forked from botblock/BLAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
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
{
"bugs": {
"url": "https://github.com/botblock/BLAPI/issues"
},
"contributors": [
"Sebastian Di Luzio <sebastian.di-luzio@tum.de> (https://github.com/T0TProduction)",
"advaith1 <advaithj1@gmail.com> (https://advaith.fun/)",
"Jonah Snider <me@jonahsnider.ninja> (https://jonahsnider.ninja/)",
"Matt Cowley <me@mattcowley.co.uk> (https://mattcowley.co.uk/)",
"Promise <me@promise.solutions> (https://promise.solutions/)"
],
"description": "BLAPI is a package to handle posting your discord stats to botlists. It's intended to be used with discord.js, though you can also manually post your stats.",
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"eslint-plugin-react-hooks": "^2.5.0",
"typescript": "^3.8.3",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5"
},
"homepage": "https://github.com/botblock/BLAPI#readme",
"keywords": [
"discord",
"js",
"discord.js",
"API",
"botlist",
"bot",
"list",
"stats",
"posting",
"automated",
"auto",
"botblock",
"Node.js",
"discordbot",
"discordbots",
"dbl",
"discordbotlist",
"discorbotlists",
"typescript",
"typed"
],
"main": "dist/blapi.js",
"types": "dist/blapi.d.ts",
"license": "MIT",
"name": "blapi",
"repository": "botblock/BLAPI",
"scripts": {
"lint": "eslint .",
"build": "tsc"
},
"files": [
"dist/"
],
"version": "2.0.1",
"dependencies": {
"node-fetch": "^2.6.0"
}
}