forked from compodoc/compodoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.52 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "compodoc",
"version": "0.0.32",
"description": "The missing documentation tool for your Angular application",
"main": "dist/index.js",
"bin": {
"compodoc": "./bin/index-cli.js"
},
"scripts": {
"build": "./node_modules/.bin/rollup -c rollup/rollup.config.js && ./node_modules/.bin/rollup -c rollup/rollup-cli.config.js",
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"download-api-list": "node tools/download-api-list.js",
"start": "npm run tsc",
"pretest": "tsc -p test/tsconfig.json",
"test": "nyc mocha --opts test/mocha.opts",
"posttest": "nyc report --reporter=json",
"codecov": "codecov -f coverage/*.json",
"tsc": "./node_modules/.bin/tsc --newLine LF --watch",
"watch-rollup": "./node_modules/.bin/rollup -c -w",
"watch": "nodemon --watch src -e ts,hbs --exec 'npm run build'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/compodoc/compodoc.git"
},
"keywords": [
"angular2",
"angular",
"documentation",
"components",
"module",
"graph",
"dependencies",
"markdown"
],
"author": "Vindent Ogloblinsky ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/compodoc/compodoc/issues"
},
"engines": {
"node": ">= 5.4.1"
},
"homepage": "https://github.com/compodoc/compodoc#readme",
"dependencies": {
"angular2-dependencies-graph": "^1.0.0-alpha.12",
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"fs-extra": "^1.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",
"is-global-exec": "^0.1.3",
"live-server": "^1.1.0",
"lodash": "^4.17.3",
"lunr": "^0.7.2",
"marked": "^0.3.6",
"shelljs": "^0.7.5",
"typescript": "^2.1.4"
},
"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.35",
"@types/node": "6.0.59",
"babel-preset-es2015-rollup": "^3.0.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"conventional-changelog-cli": "^1.2.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^3.0.0",
"webshot": "^0.18.0"
}
}