UNPKG

@bitjson/typedoc

Version:

Create api documentation for TypeScript projects.

93 lines (92 loc) 2.33 kB
{ "name": "@bitjson/typedoc", "description": "Create api documentation for TypeScript projects.", "version": "0.15.0-0", "homepage": "https://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/minimatch": "3.0.3", "fs-extra": "^7.0.1", "handlebars": "^4.1.2", "highlight.js": "^9.13.1", "lodash": "^4.17.11", "marked": "^0.6.2", "minimatch": "^3.0.0", "progress": "^2.0.3", "shelljs": "^0.8.3", "typedoc-default-themes": "^0.6.0-0", "typescript": "3.5.x" }, "devDependencies": { "@types/fs-extra": "^5.0.5", "@types/lodash": "^4.14.123", "@types/marked": "^0.6.0", "@types/mocha": "^5.2.6", "@types/mockery": "^1.4.29", "@types/shelljs": "^0.8.3", "mocha": "^6.1.4", "mockery": "^2.1.0", "nyc": "^14.0.0", "ts-node": "^8.0.3", "tslint": "^5.14.0" }, "files": [ "bin", "dist", "!dist/test", "tasks", "LICENSE" ], "scripts": { "pretest": "node scripts/copy_test_files.js", "test": "nyc --reporter=html --reporter=text-summary mocha --timeout=10000 dist/test/*.test.js", "test:ts": "mocha --require ts-node/register --watch-extensions ts --timeout=10000 src/test/*.test.ts", "build": "tsc --project .", "postbuild": "node scripts/replace_application_version.js", "build_and_test": "npm run build && npm run test", "lint": "tslint --project .", "prepublishOnly": "npm run lint && npm run build_and_test", "prepare": "npm run build", "clean": "rm -rf node_modules package-lock.json lib coverage" }, "keywords": [ "typescript", "documentation", "generator", "gruntplugin" ], "nyc": { "extension": [ ".ts", ".tsx" ], "exclude": [ "**/*.d.ts" ] } }