forked from TypeStrong/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.08 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
{
"name": "typedoc",
"description": "Create api documentation for TypeScript projects.",
"version": "0.17.3",
"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": ">= 8.0.0"
},
"dependencies": {
"fs-extra": "^8.1.0",
"handlebars": "^4.7.3",
"highlight.js": "^9.18.1",
"lodash": "^4.17.15",
"marked": "0.8.0",
"minimatch": "^3.0.0",
"progress": "^2.0.3",
"shelljs": "^0.8.3",
"typedoc-default-themes": "^0.9.0"
},
"peerDependencies": {
"typescript": ">=3.8.3"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/lodash": "^4.14.149",
"@types/marked": "^0.7.3",
"@types/minimatch": "3.0.3",
"@types/mocha": "^7.0.2",
"@types/mockery": "^1.4.29",
"@types/node": "^13.9.2",
"@types/shelljs": "^0.8.6",
"mocha": "^7.1.1",
"mockery": "^2.1.0",
"nyc": "15.0.0",
"tslint": "^5.20.1",
"typescript": "^3.8.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 .",
"postbuild": "node scripts/replace_application_version.js",
"build_and_test": "npm run build && npm run test",
"lint": "tslint --project .",
"prepublishOnly": "npm run lint && npm run build_and_test",
"prepare": "npm run build",
"clean": "rm -rf node_modules package-lock.json lib coverage"
},
"keywords": [
"typescript",
"documentation",
"generator"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
]
}
}