forked from TypeStrong/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.29 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
{
"name": "typedoc",
"description": "Create api documentation for TypeScript projects.",
"version": "0.15.0",
"homepage": "https://typedoc.org",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"typedoc": "bin/typedoc"
},
"author": {
"name": "Sebastian Lenz",
"url": "http://www.sebastian-lenz.de/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/TypeStrong/TypeDoc.git"
},
"bugs": {
"url": "https://github.com/TypeStrong/TypeDoc/issues"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/TypeStrong/TypeDoc/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"@types/minimatch": "3.0.3",
"fs-extra": "^8.1.0",
"handlebars": "^4.4.3",
"highlight.js": "^9.15.10",
"lodash": "^4.17.15",
"marked": "^0.7.0",
"minimatch": "^3.0.0",
"progress": "^2.0.3",
"shelljs": "^0.8.3",
"typedoc-default-themes": "^0.6.0",
"typescript": "3.6.x"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/lodash": "^4.14.144",
"@types/marked": "^0.6.5",
"@types/mocha": "^5.2.7",
"@types/mockery": "^1.4.29",
"@types/node": "^12.7.12",
"@types/shelljs": "^0.8.5",
"mocha": "^6.2.1",
"mockery": "^2.1.0",
"nyc": "^14.1.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.0"
},
"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",
"test:ts": "mocha --require ts-node/register --watch-extensions ts --timeout=10000 src/test/*.test.ts",
"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",
"gruntplugin"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
]
}
}