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
138 lines (138 loc) · 4.21 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.21 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
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
{
"name": "@compodoc/compodoc",
"version": "1.1.2",
"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": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"download-api-list": "node tools/download-api-list.js",
"start": "npm run test:watch",
"pretest": "./node_modules/.bin/tsc -p test/tsconfig.json && node test/dist/cli/cli-clean-root-folder.js",
"test": "./node_modules/.bin/mocha-parallel-tests test && node test/dist/cli/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/*.json",
"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": "node_modules/.bin/ts-node ./bin/index-cli.js -p ./test/src/sample-files/tsconfig.simple.json -d doc -s --port 4000 & sleep 20",
"pretest-e2e-mocha": "./node_modules/.bin/tsc -p test/tsconfig-e2e.json",
"test-e2e-mocha": "./node_modules/.bin/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"
},
"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-transformer": "^2.0.0",
"chalk": "^2.3.2",
"cheerio": "^1.0.0-rc.2",
"chokidar": "^2.0.3",
"colors": "^1.2.1",
"commander": "2.15.1",
"fancy-log": "^1.3.2",
"findit2": "^2.2.3",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"handlebars": "4.0.10",
"html-entities": "^1.2.1",
"json5": "^1.0.1",
"live-server": "1.1.0",
"lodash": "^4.17.5",
"lunr": "2.1.6",
"marked": "^0.3.19",
"os-name": "^2.0.1",
"traverse": "^0.6.6",
"ts-simple-ast": "10.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/fs-extra": "5.0.1",
"@types/handlebars": "^4.0.36",
"@types/lodash": "^4.14.106",
"@types/marked": "0.3.0",
"@types/mocha": "2.2.48",
"@types/node": "9.6.2",
"@types/semver": "^5.5.0",
"@types/traverse": "^0.6.30",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"conventional-changelog-cli": "^1.3.21",
"cross-env": "5.1.4",
"mocha": "^3.5.3",
"mocha-parallel-tests": "^1.2.10",
"nodemon": "^1.17.3",
"npm-watch": "0.3.0",
"nyc": "11.6.0",
"prettier": "1.11.1",
"request": "^2.85.0",
"rimraf": "^2.6.2",
"rollup": "0.57.1",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^4.3.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"semver": "^5.5.0",
"ts-node": "5.0.1",
"tslint": "^5.9.1"
},
"nyc": {
"include": [
"dist/index-cli.js",
"bin/*.js"
],
"extension": [
".js"
],
"reporter": [
"json",
"html",
"text-summary"
],
"all": true
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/compodoc",
"logo": "https://opencollective.com/compodoc/logo.txt"
}
}