-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.07 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tsdoc-markdown",
"version": "0.6.3",
"description": "Generates markdown documentation from TypeScript source code.",
"author": "David Dal Busco",
"license": "MIT",
"main": "dist/cjs/index.cjs.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"bin": {
"tsdoc": "bin/index.js"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"build": "node rmdir.mjs && node esbuild.mjs && npm run ts-declaration",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
"test": "jest",
"start": "node rmdir.mjs && node esbuild.mjs && node bin/index.js --src=src/test/mock.ts --dest=src/test/mock.md --repo=https://github.com/peterpeterparker/tsdoc-markdown --types",
"docs": "node rmdir.mjs && node esbuild.mjs && node bin/index.js --src=src/lib/* --repo=https://github.com/peterpeterparker/tsdoc-markdown && prettier --write ./README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterpeterparker/tsdoc-markdown.git"
},
"bugs": {
"url": "https://github.com/peterpeterparker/tsdoc-markdown"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.18",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-jest": "^29.1.2"
},
"keywords": [
"jsdoc",
"markdown",
"api",
"generator",
"typescript",
"documentation",
"doc-generator",
"tsdoc",
"tsdoc-parser"
],
"peerDependencies": {
"typescript": "^5"
}
}