-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.88 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.88 KB
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
{
"name": "typescriptlibs.typedoc",
"description": "Modified documentation generator for TSL projects.",
"version": "0.19.6",
"homepage": "https://github.com/typescriptlibs/typescriptlibs.typedoc",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"tsl-typedoc": "bin/typedoc"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/typescriptlibs/typescriptlibs.typedoc.git"
},
"bugs": {
"url": "https://github.com/typescriptlibs/typescriptlibs.typedoc/issues"
},
"engines": {
"node": ">=12.12.0"
},
"dependencies": {
"fs-extra": "^10.0.0",
"handlebars": "^4.7.7",
"highlight.js": "^11.4.0",
"lunr": "^2.3.9",
"marked": "^4.0.10",
"progress": "^2.0.3",
"semver": "^7.3.5",
"typedoc-default-themes": "~0.11.4"
},
"peerDependencies": {
"typescript": "3.9.x||4.0.x"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lunr": "^2.3.4",
"@types/marked": "^4.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.29",
"@types/shelljs": "~0.8.11",
"typescript": "~4.0.8"
},
"files": [
"bin",
"dist",
"!dist/test",
"tasks",
"LICENSE.txt"
],
"scripts": {
"test": "npm run build",
"rebuild_specs": "node scripts/rebuild_specs.js",
"build": "npx tsc --project .",
"postbuild": "node scripts/replace_application_version.js",
"build_and_test": "npm run build && npm run test",
"prepublishOnly": "node scripts/set_strict.js false && npm run build_and_test",
"postpublish": "node scripts/set_strict.js true",
"prepare": "npm run build",
"clean": "rm -rf node_modules package-lock.json lib coverage"
},
"keywords": [
"typescriptlibs",
"documentation",
"generator"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
]
}
}