66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"name": "typedoc",
|
|
"description": "Create api documentations for typescript projects.",
|
|
"version": "0.3.9",
|
|
"homepage": "http://typedoc.io",
|
|
"bin": {
|
|
"typedoc": "bin/typedoc"
|
|
},
|
|
"main": "bin/typedoc.js",
|
|
"author": {
|
|
"name": "Sebastian Lenz",
|
|
"url": "http://www.sebastian-lenz.de/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/sebastian-lenz/TypeDoc.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/sebastian-lenz/TypeDoc/issues"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "Apache-2.0",
|
|
"url": "https://github.com/sebastian-lenz/TypeDoc/blob/master/LICENSE"
|
|
}
|
|
],
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"dependencies": {
|
|
"typescript": "1.6.0-beta",
|
|
"typedoc-default-themes": "0.3.4",
|
|
"fs-extra": "^0.22.1",
|
|
"minimatch": "^2.0.10",
|
|
"handlebars": "3.0.3",
|
|
"marked": "^0.3.3",
|
|
"highlight.js": "^8.6.0",
|
|
"shelljs": "^0.5.1",
|
|
"progress": "^1.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"grunt": "^0.4.5",
|
|
"grunt-contrib-clean": "^0.6.0",
|
|
"grunt-contrib-watch": "~0.6.1",
|
|
"grunt-string-replace": "^1.2.0",
|
|
"grunt-ts": "^4.2.0",
|
|
"grunt-mocha-istanbul": "^2.4.0",
|
|
"istanbul": "^0.3.17",
|
|
"mocha": "^2.2.5"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"tasks",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"documentation",
|
|
"generator",
|
|
"gruntplugin"
|
|
]
|
|
}
|