UNPKG

compodoc

Version:

The missing documentation tool for your Angular application

113 lines (112 loc) 2.9 kB
{ "name": "compodoc", "version": "0.0.41", "description": "The missing documentation tool for your Angular application", "main": "dist/index.js", "bin": { "compodoc": "./bin/index-cli.js" }, "scripts": { "build": "rollup -c rollup/rollup.config.js -i ./src/index.ts -o dist/index.js && rollup -c rollup/rollup.config.js -i ./src/index-cli.ts -o dist/index-cli.js", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", "download-api-list": "node tools/download-api-list.js", "start": "npm run test:watch", "test": "cross-env TS_NODE_PROJECT=test/tsconfig.json TS_NODE_DISABLE_WARNINGS=1 nyc mocha --opts test/mocha.opts", "codecov": "codecov -f coverage/*.json", "lint": "tslint src/**/*.ts test/**/*.ts", "test:watch": "npm-watch" }, "watch": { "build": { "patterns": [ "src/**/*.ts" ], "extensions": "js,ts", "quiet": true } }, "repository": { "type": "git", "url": "git+https://github.com/compodoc/compodoc.git" }, "keywords": [ "angular2", "angular", "documentation", "components", "module", "graph", "dependencies", "markdown" ], "author": "Vindent Ogloblinsky (vincent.ogloblinsky@gmail.com)", "license": "MIT", "bugs": { "url": "https://github.com/compodoc/compodoc/issues" }, "engines": { "node": ">= 5.4.1" }, "homepage": "https://github.com/compodoc/compodoc#readme", "dependencies": { "@compodoc/ngd-core": "^2.0.0-alpha.1", "@compodoc/ngd-transformer": "^2.0.0-alpha.3", "cheerio": "^0.22.0", "colors": "^1.1.2", "commander": "^2.9.0", "fs-extra": "^2.0.0", "glob": "^7.1.1", "gulp-util": "^3.0.8", "handlebars": "^4.0.6", "highlight.js": "^9.8.0", "html-entities": "^1.2.0", "live-server": "^1.2.0", "lodash": "^4.17.3", "lunr": "^0.7.2", "marked": "^0.3.6", "shelljs": "^0.7.6", "typescript": "2.2.0" }, "devDependencies": { "@types/chai": "^3.4.34", "@types/es6-promise": "0.0.32", "@types/fs-extra": "0.0.37", "@types/handlebars": "^4.0.31", "@types/marked": "0.0.28", "@types/mocha": "^2.2.39", "@types/node": "7.0.5", "chai": "^3.5.0", "codecov": "^1.0.1", "conventional-changelog-cli": "^1.2.0", "cross-env": "^3.1.4", "mocha": "^3.2.0", "nodemon": "^1.11.0", "npm-watch": "^0.1.8", "nyc": "^10.1.2", "rimraf": "^2.5.4", "rollup": "^0.41.4", "rollup-plugin-typescript": "^0.8.1", "rollup-watch": "^3.2.2", "ts-node": "^2.0.0", "tslint": "^4.4.2", "webshot": "^0.18.0" }, "nyc": { "include": [ "dist/index-cli.js", "bin/*.js" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [ "json", "html", "text-summary" ], "all": true } }