Files
protocol/package.json
T
2015-04-29 23:58:39 +02:00

63 lines
1.3 KiB
JSON

{
"name": "typedoc",
"description": "Create api documentations for typescript projects.",
"version": "0.3.4",
"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.4.x",
"typedoc-default-themes": "^0.3.3",
"fs-extra": "^0.16.5",
"minimatch": "^2.0.4",
"handlebars": "3.0.0",
"marked": "^0.3.3",
"highlight.js": "^8.4.0",
"shelljs": "^0.4.0",
"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.0.0",
"grunt-ts": "^3.0.0"
},
"files": [
"bin",
"tasks",
"LICENSE"
],
"scripts": {
"test": "mocha"
},
"keywords": [
"typescript",
"documentation",
"generator",
"gruntplugin"
]
}