forked from TypeStrong/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.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
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
{
"name": "typedoc",
"description": "Create api documentation for TypeScript projects.",
"version": "0.20.14",
"homepage": "https://typedoc.org",
"main": "dist/index.js",
"typings": "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": ">= 10.8.0"
},
"dependencies": {
"colors": "^1.4.0",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"lodash": "^4.17.20",
"lunr": "^2.3.9",
"marked": "^1.2.5",
"minimatch": "^3.0.0",
"progress": "^2.0.3",
"shelljs": "^0.8.4",
"shiki": "^0.2.7",
"typedoc-default-themes": "0.12.1"
},
"peerDependencies": {
"typescript": "3.9.x || 4.0.x || 4.1.x"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/lodash": "^4.14.167",
"@types/lunr": "^2.3.3",
"@types/marked": "^1.2.1",
"@types/minimatch": "3.0.3",
"@types/mocha": "^8.2.0",
"@types/mockery": "^1.4.29",
"@types/node": "^14.14.20",
"@types/semver": "^7.3.4",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"mocha": "^8.2.1",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"files": [
"bin",
"dist",
"!dist/test",
"tasks",
"LICENSE"
],
"scripts": {
"pretest": "node scripts/copy_test_files.js",
"test": "nyc --reporter=html --reporter=text-summary mocha --timeout=10000 'dist/test/**/*.test.js'",
"prerebuild_specs": "npm run pretest",
"rebuild_specs": "node scripts/rebuild_specs.js",
"build": "tsc --project .",
"build_and_test": "npm run build && npm run test",
"lint": "eslint . && prettier --check .",
"prepublishOnly": "node scripts/set_strict.js false && npm run lint && npm run build_and_test",
"postpublish": "node scripts/set_strict.js true",
"clean": "rm -rf node_modules package-lock.json lib coverage"
},
"keywords": [
"typescript",
"documentation",
"generator"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
]
}
}