-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "ts-docgen",
"version": "2.0.2",
"description": "A TypeScript-enabled discord.js-like docs generator",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"private": true,
"scripts": {
"build": "npx rimraf lib && npx tsc",
"build:prepare": "npx shx test -d ./lib || npm run build",
"lint:fix": "eslint --ext .ts src --fix",
"prepare": "npx husky install && npm run build:prepare",
"test": "npm run build && ts-node test/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/ts-docgen.git"
},
"author": "Federico Grandi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/ts-docgen/issues"
},
"homepage": "https://github.com/EndBug/ts-docgen#readme",
"devDependencies": {
"@types/node": "^14.14.2",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^5.1.3",
"prettier": "^2.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/yargs": "^15.0.9",
"js-yaml": "^3.14.0",
"tmp": "^0.2.1",
"typedoc": "^0.21.10",
"typedoc-plugin-as-member-of": "^1.0.2"
}
}