UNPKG

2.9 kBJSONView Raw
1{
2 "name": "compodoc",
3 "version": "0.0.41",
4 "description": "The missing documentation tool for your Angular application",
5 "main": "dist/index.js",
6 "bin": {
7 "compodoc": "./bin/index-cli.js"
8 },
9 "scripts": {
10 "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",
11 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
12 "download-api-list": "node tools/download-api-list.js",
13 "start": "npm run test:watch",
14 "test": "cross-env TS_NODE_PROJECT=test/tsconfig.json TS_NODE_DISABLE_WARNINGS=1 nyc mocha --opts test/mocha.opts",
15 "codecov": "codecov -f coverage/*.json",
16 "lint": "tslint src/**/*.ts test/**/*.ts",
17 "test:watch": "npm-watch"
18 },
19 "watch": {
20 "build": {
21 "patterns": [
22 "src/**/*.ts"
23 ],
24 "extensions": "js,ts",
25 "quiet": true
26 }
27 },
28 "repository": {
29 "type": "git",
30 "url": "git+https://github.com/compodoc/compodoc.git"
31 },
32 "keywords": [
33 "angular2",
34 "angular",
35 "documentation",
36 "components",
37 "module",
38 "graph",
39 "dependencies",
40 "markdown"
41 ],
42 "author": "Vindent Ogloblinsky (vincent.ogloblinsky@gmail.com)",
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/compodoc/compodoc/issues"
46 },
47 "engines": {
48 "node": ">= 5.4.1"
49 },
50 "homepage": "https://github.com/compodoc/compodoc#readme",
51 "dependencies": {
52 "@compodoc/ngd-core": "^2.0.0-alpha.1",
53 "@compodoc/ngd-transformer": "^2.0.0-alpha.3",
54 "cheerio": "^0.22.0",
55 "colors": "^1.1.2",
56 "commander": "^2.9.0",
57 "fs-extra": "^2.0.0",
58 "glob": "^7.1.1",
59 "gulp-util": "^3.0.8",
60 "handlebars": "^4.0.6",
61 "highlight.js": "^9.8.0",
62 "html-entities": "^1.2.0",
63 "live-server": "^1.2.0",
64 "lodash": "^4.17.3",
65 "lunr": "^0.7.2",
66 "marked": "^0.3.6",
67 "shelljs": "^0.7.6",
68 "typescript": "2.2.0"
69 },
70 "devDependencies": {
71 "@types/chai": "^3.4.34",
72 "@types/es6-promise": "0.0.32",
73 "@types/fs-extra": "0.0.37",
74 "@types/handlebars": "^4.0.31",
75 "@types/marked": "0.0.28",
76 "@types/mocha": "^2.2.39",
77 "@types/node": "7.0.5",
78 "chai": "^3.5.0",
79 "codecov": "^1.0.1",
80 "conventional-changelog-cli": "^1.2.0",
81 "cross-env": "^3.1.4",
82 "mocha": "^3.2.0",
83 "nodemon": "^1.11.0",
84 "npm-watch": "^0.1.8",
85 "nyc": "^10.1.2",
86 "rimraf": "^2.5.4",
87 "rollup": "^0.41.4",
88 "rollup-plugin-typescript": "^0.8.1",
89 "rollup-watch": "^3.2.2",
90 "ts-node": "^2.0.0",
91 "tslint": "^4.4.2",
92 "webshot": "^0.18.0"
93 },
94 "nyc": {
95 "include": [
96 "dist/index-cli.js",
97 "bin/*.js"
98 ],
99 "extension": [
100 ".ts"
101 ],
102 "require": [
103 "ts-node/register"
104 ],
105 "reporter": [
106 "json",
107 "html",
108 "text-summary"
109 ],
110 "all": true
111 }
112}