forked from TypeStrong/grunt-typedoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 987 Bytes
/
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
{
"name": "grunt-typedoc",
"description": "Grunt plugin to generate TypeScript docs with TypeDoc",
"version": "0.2.2",
"homepage": "https://github.com/grunt-ts/grunt-typedoc",
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"repository": {
"type": "git",
"url": "https://github.com/grunt-ts/grunt-typedoc"
},
"bugs": {
"url": "https://github.com/grunt-ts/grunt-typedoc/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/grunt-ts/grunt-typedoc/blob/master/LICENSE-MIT"
}
],
"keywords": [
"gruntplugin",
"typescript",
"typedoc"
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"typedoc": "^0.3.1"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.1",
"recursive-readdir": "^1.2.1"
}
}