Files
protocol/package.json
T
Blake Embrey 7575e0a633 v0.4.1
2016-06-04 16:39:02 -07:00

73 lines
1.6 KiB
JSON

{
"name": "typedoc",
"description": "Create api documentations for typescript projects.",
"version": "0.4.1",
"homepage": "http://typedoc.io",
"bin": {
"typedoc": "bin/typedoc"
},
"main": "bin/typedoc.js",
"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": ">=0.10.0"
},
"dependencies": {
"fs-extra": "^0.26.2",
"handlebars": "4.0.5",
"highlight.js": "^9.0.0",
"lodash": "^3.10.1",
"marked": "^0.3.5",
"minimatch": "^3.0.0",
"progress": "^1.1.8",
"shelljs": "^0.5.3",
"typedoc-default-themes": "^0.4.0",
"typescript": "1.8.10"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-mocha-istanbul": "^3.0.1",
"grunt-string-replace": "^1.2.0",
"grunt-ts": "^5.3.0-beta.2",
"istanbul": "^0.4.1",
"mocha": "^2.3.4"
},
"files": [
"bin",
"lib",
"tasks",
"index.js",
"LICENSE"
],
"scripts": {
"test": "mocha",
"build": "grunt build_and_test",
"prepublish": "npm run build"
},
"keywords": [
"typescript",
"documentation",
"generator",
"gruntplugin"
]
}