forked from TypeStrong/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.94 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "typedoc",
"description": "Create api documentation for TypeScript projects.",
"version": "0.22.15",
"homepage": "https://typedoc.org",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"typedoc": "bin/typedoc"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/TypeStrong/TypeDoc.git"
},
"bugs": {
"url": "https://github.com/TypeStrong/TypeDoc/issues"
},
"engines": {
"node": ">= 12.10.0"
},
"dependencies": {
"glob": "^7.2.0",
"lunr": "^2.3.9",
"marked": "^4.0.12",
"minimatch": "^5.0.1",
"shiki": "^0.10.1"
},
"peerDependencies": {
"typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/lunr": "^2.3.4",
"@types/marked": "^4.0.3",
"@types/minimatch": "3.0.5",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"esbuild": "^0.14.34",
"eslint": "^8.13.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"prettier": "2.6.2",
"puppeteer": "^13.5.2",
"reg-notify-github-plugin": "^0.11.1",
"reg-suit": "^0.11.1",
"reg-suit-core": "^0.11.1",
"reg-suit-interface": "^0.11.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"files": [
"/bin",
"!*.map",
"/dist",
"!/dist/tmp",
"!/dist/test",
"/LICENSE",
"/static"
],
"scripts": {
"pretest": "node scripts/copy_test_files.js",
"test": "mocha -r ts-node/register --config .config/mocha.fast.json",
"pretest:full": "npm run pretest",
"test:full": "nyc mocha -r ts-node/register --config .config/mocha.full.json",
"test:visual": "node ./dist/test/capture-screenshots.js && reg-suit -c .config/regconfig.json compare",
"test:visual:accept": "node scripts/accept_visual_regression.js",
"prerebuild_specs": "npm run pretest",
"rebuild_specs": "node scripts/rebuild_specs.js",
"build": "npm run build:tsc && npm run build:themes",
"build:tsc": "tsc --project .",
"build:themes": "esbuild src/lib/output/themes/default/assets/bootstrap.ts --bundle --minify --outfile=static/main.js",
"build:prod": "npm run build:prod:tsc && npm run build:themes",
"build:prod:tsc": "tsc --project . --sourceMap false",
"lint": "eslint . && npm run prettier -- --check .",
"prettier": "prettier --config .config/.prettierrc.json --ignore-path .config/.prettierignore",
"prepublishOnly": "node scripts/set_strict.js false && npm run build:prod && npm test",
"postpublish": "node scripts/set_strict.js true"
},
"keywords": [
"typescript",
"documentation",
"generator"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"reporter": [
"html",
"text-summary"
],
"exclude": [
"**/*.d.ts",
"src/test"
]
}
}