-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
136 lines (136 loc) · 4.15 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
{
"name": "dgeni-packages",
"version": "0.30.0",
"description": "A collection of dgeni packages for generating documentation from source code",
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"!.eslintrc.js",
"!test.js",
"!**/fixtures/**",
"!**/mocks/**",
"!**/*.spec.js",
"!**/*.spec.js.map",
"!**/*.spec.d.ts"
],
"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": ">=12.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.14",
"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",
"nunjucks": "^3.2.2",
"rehype": "^8.0.0",
"semver": "^5.2.0",
"spdx-license-list": "^2.1.0",
"typescript": "~4.5.4",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@types/glob": "^5.0.30",
"@types/jasmine": "^2.5.51",
"@types/lodash.difference": "^4.5.6",
"@types/node": "^14.14.20",
"eslint": "^7.17.0",
"jasmine": "^2.6.0",
"nyc": "^15.1.0",
"rewire": "~2.0.0",
"semantic-release": "^19.0.5",
"source-map-support": "^0.4.15"
},
"resolutions": {
"@semantic-release/npm": "9.0.0"
},
"contributors": [
"Peter Bacon Darwin <[email protected]>",
"Stéphane Reynaud <[email protected]>",
"Andy Joslin <[email protected]>",
"Pascal Precht <[email protected]>",
"Julie <[email protected]>",
"Jim Cummins <[email protected]>",
"Andrew Joslin <[email protected]>",
"thorn0 <[email protected]>",
"kevinrowe <[email protected]>",
"Pete Bacon Darwin <[email protected]>",
"Matthew Harris <[email protected]>",
"Konstantinos Rousis <[email protected]>",
"Tobias Bosch <[email protected]>",
"Thor Jacobsen <[email protected]>",
"<[email protected]>",
"Lucas Galfaso <[email protected]>",
"Tim Kendrick <[email protected]>",
"Marcin Wosinek <[email protected]>",
"MaartenVerbaarschot <[email protected]>",
"Martin Staffa <[email protected]>",
"Jacob Eggers <[email protected]>",
"Shai Resnik <[email protected]>",
"Brian Hann <[email protected]>",
"Matt Fairbrass <[email protected]>",
"Keir Lawson <[email protected]>",
"Yair Leviel <[email protected]>",
"David Reher <[email protected]>",
"Ilya WingedFox Lebedev <[email protected]>",
"Øystein Amundse <[email protected]>",
"Topher Fangio <[email protected]>",
"Jerry Orta <[email protected]>",
"Perry Govier <[email protected]>",
"Rod Leviton <[email protected]>",
"Paul Gschwendtner <[email protected]>",
"Hagen Schulze <[email protected]>",
"Nick Horvath <[email protected]>",
"Georgios Kalpakas <[email protected]>",
"Jicheng Li <[email protected]>",
"Christoffer Hasselberg <[email protected]>",
"David Herges <[email protected]>",
"Greg Magolan <[email protected]>",
"Livio Brunner <[email protected]>",
"Lorenzo Moreschini <[email protected]>"
]
}