forked from TypeStrong/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.2 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 documentations for typescript projects.",
"version": "0.14.2",
"homepage": "http://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/fs-extra": "^5.0.3",
"@types/handlebars": "^4.0.38",
"@types/highlight.js": "^9.12.3",
"@types/lodash": "^4.14.110",
"@types/marked": "^0.4.0",
"@types/minimatch": "3.0.3",
"@types/shelljs": "^0.8.0",
"fs-extra": "^7.0.0",
"handlebars": "^4.0.6",
"highlight.js": "^9.13.1",
"lodash": "^4.17.10",
"marked": "^0.4.0",
"minimatch": "^3.0.0",
"progress": "^2.0.0",
"shelljs": "^0.8.2",
"typedoc-default-themes": "^0.5.0",
"typescript": "3.2.x"
},
"devDependencies": {
"@types/mocha": "^5.2.4",
"@types/mockery": "^1.4.29",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-istanbul": "^5.0.1",
"grunt-string-replace": "^1.2.0",
"grunt-ts": "^6.0.0-beta.21",
"grunt-tslint": "^5.0.2",
"istanbul": "^0.4.1",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0"
},
"files": [
"bin",
"dist",
"!dist/test",
"tasks",
"LICENSE"
],
"scripts": {
"test": "grunt test",
"build": "grunt build_and_test",
"lint": "tslint --project .",
"prepublishOnly": "grunt build_and_test",
"prepare": "grunt default",
"grunt": "grunt",
"clean": "rm -rf node_modules package-lock.json lib coverage .tscache"
},
"keywords": [
"typescript",
"documentation",
"generator",
"gruntplugin"
]
}