-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.13 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "fliegdoc",
"version": "0.6.0",
"description": "A documentation generator for Typescript-based libraries with good support for monorepos",
"repository": {
"url": "git+https://github.com/fliegwerk/fliegdoc.git",
"type": "git"
},
"author": "Pablo Klaschka",
"homepage": "https://fliegwerk.github.io/fliegdoc",
"bugs": {
"url": "https://github.com/fliegwerk/fliegdoc/issues"
},
"contributors": [
{
"email": "contact@pabloklaschka.de",
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka"
}
],
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"fliegdoc": "bin/fliegdoc.js"
},
"scripts": {
"prepare": "node scripts/register-git-hook.js",
"test": "npm run build && node ./bin/fliegdoc.js build -s",
"start": "ts-node src/index.ts",
"build": "tsc -p tsconfig.json",
"style": "prettier --write package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"style:ci": "prettier --list-different package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"prepublishOnly": "npm run style && npm run build",
"release": "standard-version",
"lint": "eslint . --ext .js,.ts"
},
"keywords": [],
"engines": {
"node": ">12.0.0"
},
"files": [
"bin",
"build",
"views",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@types/cosmiconfig": "6.0.3",
"@types/express": "4.17.21",
"@types/fs-extra": "9.0.13",
"@types/markdown-it": "12.2.3",
"@types/node": "16.18.124",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-jsdoc": "38.1.6",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-tsdoc": "0.4.0",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"standard-version": "9.5.0",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"dependencies": {
"colorette": "^2.0.2",
"cosmiconfig": "^7.0.0",
"enquirer": "^2.3.6",
"eta": "^1.12.1",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"markdown-it": "^12.0.4",
"ts-morph": "^16.0.0",
"yargs": "^17.0.1"
}
}