forked from angular/dgeni-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.9 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
{
"name": "dgeni-packages",
"version": "0.28.4",
"description": "A collection of dgeni packages for generating documentation from source code",
"scripts": {
"test": "yarn build && node test.js",
"cover": "yarn build && nyc node test.js",
"docs": "dgeni ./docs",
"changelog": "changez -o changes.md",
"build": "tsc -p typescript && tsc -p post-process-html",
"prepublish": "git clean -xdf typescript && git clean -xdf post-process-html && yarn build",
"watch": "tsc -p typescript -w"
},
"engines": {
"node": ">=11.0.0",
"yarn": ">=0.17.9"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/dgeni-packages.git"
},
"keywords": [
"ngdoc",
"angular",
"angularjs",
"dgeni",
"document generation",
"javascript",
"jsdoc",
"typescript"
],
"author": "Pete Bacon Darwin",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/dgeni-packages/issues"
},
"peerDependencies": {
"dgeni": "^0.4.0"
},
"dependencies": {
"canonical-path": "^1.0.0",
"catharsis": "^0.8.1",
"change-case": "3.0.0",
"dgeni": "^0.4.13",
"eslint": "^7.17.0",
"espree": "^7.3.1",
"estraverse": "^4.1.0",
"glob": "^7.0.5",
"htmlencode": "^0.0.4",
"htmlparser2": "^3.7.3",
"lodash.difference": "^4.5.0",
"lodash.template": "^4.5.0",
"marked": "^0.7.0",
"minimatch": "^3.0.2",
"mkdirp": "^1.0.3",
"nunjucks": "^3.2.2",
"rehype": "^8.0.0",
"semver": "^5.2.0",
"source-map-support": "^0.4.15",
"spdx-license-list": "^2.1.0",
"stringmap": "^0.2.2",
"typescript": "^3.2.2",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@types/glob": "^5.0.30",
"@types/jasmine": "^2.5.51",
"@types/lodash.difference": "^4.5.6",
"@types/mkdirp": "^1.0.0",
"@types/node": "^14.14.20",
"changez": "^2.1.1",
"changez-angular": "^2.1.0",
"jasmine": "^2.6.0",
"nyc": "^15.1.0",
"rewire": "~2.0.0"
},
"contributors": [
"Peter Bacon Darwin <pete@bacondarwin.com>",
"Stéphane Reynaud <forresst@voila.fr>",
"Andy Joslin <andytjoslin@gmail.com>",
"Pascal Precht <pascal.precht@googlemail.com>",
"Julie <ju.ralph@gmail.com>",
"Jim Cummins <jim.for.cy@gmail.com>",
"Andrew Joslin <andytjoslin@gmail.com>",
"thorn0 <thorn.mailbox@gmail.com>",
"kevinrowe <kevinrowe@outlook.com>",
"Pete Bacon Darwin <pete@bacondarwin.com>",
"Matthew Harris <ftmomatt@gmail.com>",
"Konstantinos Rousis <rousisk@gmail.com>",
"Tobias Bosch <tbosch1009@gmail.com>",
"Thor Jacobsen <freak.tm@gmail.com>",
"<thorn.mailbox@gmail.com>",
"Lucas Galfaso <lgalfaso@gmail.com>",
"Tim Kendrick <timkendrick@gmail.com>",
"Marcin Wosinek <marcin.wosinek@gmail.com>",
"MaartenVerbaarschot <m.vbschot@gmail.com>",
"Martin Staffa <mjstaffa@googlemail.com>",
"Jacob Eggers <eggers@brandeis.edu>",
"Shai Resnik <shai.reznik@gmail.com>",
"Brian Hann <emailc0bra@gmail.com>",
"Matt Fairbrass <matt.fairbrass@gmail.com>",
"Keir Lawson <keirlawson@gmail.com>",
"Yair Leviel <yleviel@akamai.com>",
"David Reher <david.reher@gmx.de>",
"Ilya WingedFox Lebedev <ilya@lebedev.net>",
"Øystein Amundse <oystein.amundsen@bouvet.no>",
"Topher Fangio <fangiotophia@gmail.com>",
"Jerry Orta <jerryorta.dev@gmail.com>",
"Perry Govier <perrygovier@users.noreply.github.com>",
"Rod Leviton <rod@rodleviton.com>",
"Paul Gschwendtner <paulgschwendtner@gmail.com>",
"Hagen Schulze <hagen.schulze@nextlabel.de>",
"Nick Horvath <nhorvath@gmail.com>",
"Georgios Kalpakas <kalpakas.g@gmail.com>",
"Jicheng Li <deemstone@gmail.com>",
"Christoffer Hasselberg <stofolus@gmail.com>",
"David Herges <dherges@users.noreply.github.com>",
"Greg Magolan <gmagolan@gmail.com>",
"Livio Brunner <livio.brunner.lb1@gmail.com>",
"Lorenzo Moreschini <lor.moreschini@gmail.com>"
]
}