forked from basedalexander/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.94 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
{
"name": "typedoc",
"description": "Create api documentations for typescript projects.",
"version": "0.8.0",
"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": ">= 4.2.0"
},
"dependencies": {
"@types/fs-extra": "4.0.0",
"@types/handlebars": "4.0.31",
"@types/highlight.js": "9.1.8",
"@types/lodash": "4.14.74",
"@types/marked": "0.3.0",
"@types/minimatch": "2.0.29",
"@types/shelljs": "0.7.0",
"fs-extra": "^4.0.0",
"handlebars": "^4.0.6",
"highlight.js": "^9.0.0",
"lodash": "^4.13.1",
"marked": "^0.3.5",
"minimatch": "^3.0.0",
"progress": "^2.0.0",
"shelljs": "^0.7.0",
"typedoc-default-themes": "^0.5.0",
"typescript": "2.4.1"
},
"devDependencies": {
"@types/mocha": "^2.2.39",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-istanbul": "^5.0.1",
"grunt-string-replace": "^1.2.0",
"grunt-ts": "^5.5.1",
"grunt-tslint": "^5.0.1",
"istanbul": "^0.4.1",
"mocha": "^3.0.2",
"tslint": "^5.1.0"
},
"files": [
"bin",
"dist",
"!dist/test",
"tasks",
"LICENSE"
],
"scripts": {
"test": "mocha -t 10000 dist/test",
"build": "grunt build_and_test",
"prepublish": "npm run build"
},
"keywords": [
"typescript",
"documentation",
"generator",
"gruntplugin"
]
}