forked from compodoc/compodoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 6.03 KB
/
package.json
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@compodoc/compodoc",
"version": "1.1.10",
"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-cli.ts -o dist/index-cli.js -f cjs && rollup -c rollup/rollup.config.js -i ./src/index.ts -o dist/index.js -f cjs",
"changelog": " auto-changelog -o CH.md --template tools/changelog-template.hbs --starting-commit f597531e",
"download-api-list": "node tools/download-api-list.js",
"start": "npm run test:watch",
"pretest": "tsc -p test/tsconfig.json && node test/dist/cli-clean-root-folder.js",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json TS_NODE_DISABLE_WARNINGS=1 nyc --reporter=lcov mocha --opts test/mocha.opts && node test/dist/cli-revert-root-folder.js",
"posttest": "rimraf test/dist",
"angularexpo": "npm run pretest && node tools/tests-angularexpo.js",
"nyc": "nyc npm test",
"codecov": "codecov -f coverage/lcov_merged.info",
"backup-package-json": "node tools/backup-package-json.js",
"restore-package-json": "node tools/restore-package-json.js",
"prepublishOnly": "npm run build && npm run backup-package-json",
"postpublish": "npm run restore-package-json",
"lint": "tslint -p tsconfig.json src/**/*.ts",
"test:watch": "npm-watch",
"test:simple-doc": "ts-node ./bin/index-cli.js -p ./test/fixtures/sample-files/tsconfig.simple.json -d doc -s --port 4000 & sleep 20",
"pretest-e2e-mocha": "tsc -p test/tsconfig-e2e.json",
"test-e2e-mocha": "mocha --opts test/mocha-e2e.opts",
"presaucelabs-test-e2e-mocha": "npm run test:simple-doc",
"saucelabs-test-e2e-mocha": "cross-env MODE_LOCAL=0 npm run test-e2e-mocha",
"local-test-e2e-mocha": "cross-env MODE_LOCAL=1 npm run test-e2e-mocha",
"postinstall": "opencollective-postinstall || exit 0",
"format:check": "prettier --config ./.prettierrc --list-different \"src/**/*.ts\"",
"format:write": "prettier --config ./.prettierrc --write \"src/**/*.ts\"",
"test-jest": "jest",
"test-jest:watch": "jest --watch",
"build-refactoring": "rollup -c rollup/rollup.config.js -i ./src-refactored/index-cli.ts -o dist/index-cli.js -f cjs",
"madge": "./node_modules/.bin/madge --warning -i dist/madge.png src-refactored/index-cli.ts",
"premerge-lcov": "mv coverage-refactoring/lcov.info coverage/lcov-refactoring.info",
"merge-lcov": "./node_modules/.bin/lcov-result-merger 'coverage/lcov-*.info' 'coverage/lcov_merged.info'"
},
"watch": {
"build": {
"patterns": [
"src/**/*.ts"
],
"extensions": "js,ts",
"quiet": true
},
"build-refactoring": {
"patterns": [
"src-refactored/**/*.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 ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/compodoc/compodoc/issues"
},
"engines": {
"node": ">= 8.0.0"
},
"homepage": "https://github.com/compodoc/compodoc#readme",
"dependencies": {
"@compodoc/ngd-transformer": "^2.0.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"chokidar": "^3.0.2",
"colors": "^1.3.3",
"commander": "^2.20.0",
"cosmiconfig": "^5.2.1",
"decache": "^4.5.1",
"fancy-log": "^1.3.3",
"findit2": "^2.2.3",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"handlebars": "^4.1.2",
"html-entities": "^1.2.1",
"i18next": "^17.0.3",
"inside": "^1.0.0",
"json5": "^2.1.0",
"live-server": "^1.2.1",
"lodash": "^4.17.14",
"loglevel": "^1.6.3",
"loglevel-plugin-prefix": "^0.8.4",
"lunr": "^2.3.6",
"marked": "^0.7.0",
"minimist": "^1.2.0",
"opencollective-postinstall": "^2.0.2",
"os-name": "^3.1.0",
"pdfmake": "^0.1.57",
"semver": "^6.1.1",
"traverse": "^0.6.6",
"ts-morph": "^3.1.2",
"ts-simple-ast": "12.4.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/marked": "^0.6.5",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.4",
"@types/semver": "^6.0.0",
"@types/traverse": "^0.6.32",
"auto-changelog": "^1.14.1",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lcov-result-merger": "^3.1.0",
"madge": "^3.4.4",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"npm-watch": "^0.6.0",
"nyc": "13.3.0",
"pdfjs-dist": "^2.0.943",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.0",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-watch": "^4.3.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/compodoc",
"logo": "https://opencollective.com/compodoc/logo.txt"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.ts\""
}
}
}