-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.63 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
52
53
54
{
"name": "dbothook",
"version": "1.0.1",
"description": "Discord bot list poster and stats retriever",
"main": "./src/index",
"repository": {
"type": "git",
"url": "git+https://github.com/dbots-pkg/dbothook.js.git"
},
"scripts": {
"docgen": "docgen --source src --custom docs/index.yml --output docs/docs.json --jsdoc docs/docgen.json && npm run docgen:post",
"docgen:post": "node scripts/docgen-post.js",
"docs": "node scripts/docs.js && npm run docgen",
"eslint": "eslint ./src",
"eslint:fix": "eslint ./src --fix",
"gpr": "node scripts/gpr.js",
"tsd-jsdoc": "jsdoc -c ./typings/jsdoc.json -r src",
"tslint": "tslint ./typings/*.d.ts",
"tslint:fix": "tslint ./typings/*.d.ts --fix",
"types": "npm run tsd-jsdoc && mv out/types.d.ts typings/index.d.ts && rm out --dir && npm run types:post",
"types:post": "node scripts/types-post.js && npm run tslint:fix",
"prepublishOnly": "npm run eslint:fix && npm run tslint:fix"
},
"keywords": [
"api",
"discord",
"discordapp",
"discord bots",
"discord bot",
"webhook",
"webserver"
],
"author": "Snazzah",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbots-pkg/dbothook.js/issues"
},
"homepage": "https://dbothook.js.org",
"dependencies": {
"@types/express": "^4.17.4",
"eventemitter3": "^4.0.0",
"express": "^4.17.1"
},
"devDependencies": {
"@discordjs/docgen": "^0.12.1",
"@types/node": "^12.12.53",
"dtslint": "^4.0.0",
"eslint": "^8.0.0",
"jsdoc-typeof-plugin": "^1.0.0",
"tsd-jsdoc": "^2.4.0",
"tslint": "^6.0.0",
"typescript": "^4.0.2"
}
}