pondjs
Version:
A timeseries library build on top of immutable.js
92 lines (91 loc) • 2.25 kB
JSON
{
"name": "typedoc",
"description": "Create api documentations for typescript projects.",
"version": "0.14.2",
"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": ">= 6.0.0"
},
"dependencies": {
"@types/fs-extra": "^5.0.3",
"@types/handlebars": "^4.0.38",
"@types/highlight.js": "^9.12.3",
"@types/lodash": "^4.14.110",
"@types/marked": "^0.4.0",
"@types/minimatch": "3.0.3",
"@types/shelljs": "^0.8.0",
"fs-extra": "^7.0.0",
"handlebars": "^4.0.6",
"highlight.js": "^9.13.1",
"lodash": "^4.17.10",
"marked": "^0.4.0",
"minimatch": "^3.0.0",
"progress": "^2.0.0",
"shelljs": "^0.8.2",
"typedoc-default-themes": "^0.5.0",
"typescript": "3.2.x"
},
"devDependencies": {
"@types/mocha": "^5.2.4",
"@types/mockery": "^1.4.29",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-istanbul": "^5.0.1",
"grunt-string-replace": "^1.2.0",
"grunt-ts": "^6.0.0-beta.21",
"grunt-tslint": "^5.0.2",
"istanbul": "^0.4.1",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0"
},
"files": [
"bin",
"dist",
"!dist/test",
"tasks",
"LICENSE"
],
"scripts": {
"test": "grunt test",
"build": "grunt build_and_test",
"lint": "tslint --project .",
"prepublishOnly": "grunt build_and_test",
"prepare": "grunt default",
"grunt": "grunt",
"clean": "rm -rf node_modules package-lock.json lib coverage .tscache"
},
"keywords": [
"typescript",
"documentation",
"generator",
"gruntplugin"
]
}