85 lines
1.9 KiB
JSON
85 lines
1.9 KiB
JSON
{
|
|
"name": "typedoc",
|
|
"description": "Create api documentations for typescript projects.",
|
|
"version": "0.5.9",
|
|
"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": "0.0.33",
|
|
"@types/handlebars": "^4.0.31",
|
|
"@types/highlight.js": "^9.1.8",
|
|
"@types/lodash": "^4.14.37",
|
|
"@types/marked": "0.0.28",
|
|
"@types/minimatch": "^2.0.29",
|
|
"@types/shelljs": "^0.3.32",
|
|
"fs-extra": "^2.0.0",
|
|
"handlebars": "4.0.5",
|
|
"highlight.js": "^9.0.0",
|
|
"lodash": "^4.13.1",
|
|
"marked": "^0.3.5",
|
|
"minimatch": "^3.0.0",
|
|
"progress": "^1.1.8",
|
|
"shelljs": "^0.7.0",
|
|
"typedoc-default-themes": "^0.4.2",
|
|
"typescript": "2.2.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": "^4.0.1",
|
|
"istanbul": "^0.4.1",
|
|
"mocha": "^3.0.2",
|
|
"tslint": "^4.4.2"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"!dist/test",
|
|
"tasks",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha -t 4000 dist/test",
|
|
"build": "grunt build_and_test",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"documentation",
|
|
"generator",
|
|
"gruntplugin"
|
|
]
|
|
}
|