60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"name": "typedoc",
|
|
"description": "Create api documentations for typescript projects.",
|
|
"version": "0.1.1",
|
|
"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.0.1",
|
|
"fs-extra": "^0.10.0",
|
|
"minimatch": "^0.3.0",
|
|
"handlebars": "^2.0.0-alpha.4",
|
|
"marked": "^0.3.2",
|
|
"highlight.js": "^8.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"grunt": "^0.4.5",
|
|
"grunt-autoprefixer": "^1.0.0",
|
|
"grunt-contrib-copy": "^0.5.0",
|
|
"grunt-contrib-sass": "^0.7.3",
|
|
"grunt-contrib-uglify": "^0.5.0",
|
|
"grunt-contrib-watch": "~0.6.1",
|
|
"grunt-string-replace": "^0.2.7",
|
|
"grunt-ts": "^1.11.3"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"documentation"
|
|
]
|
|
}
|