forked from discordjs/docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "@discordjs/docgen",
"version": "0.11.1",
"description": "The docs.json generator for discord.js and its related projects",
"main": "src/index.js",
"bin": {
"docgen": "src/index.js"
},
"scripts": {
"test": "eslint src && node src --source test/src --custom test/docs/index.yml --output test/docs/docs.json --spaces 2",
"test:docs": "node src --source test/src --custom test/docs/index.yml --output test/docs/docs.json --spaces 2",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydrabolt/discord.js-docgen.git"
},
"keywords": [
"discord.js",
"documentation",
"docs",
"generator",
"docgen",
"docsgen",
"discord",
"api",
"library"
],
"author": "Amish Shah <[email protected]>",
"contributors": [
"Schuyler Cebulskie <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hydrabolt/discord.js-docgen/issues"
},
"homepage": "https://github.com/hydrabolt/discord.js-docgen",
"dependencies": {
"eslint": "^6.3.0",
"js-yaml": "^3.13.1",
"jsdoc-to-markdown": "^5.0.1",
"tsubaki": "^1.3.2",
"yargs": "^14.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}