forked from angular/dgeni-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.36 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
{
"name": "dgeni-packages",
"version": "0.20.0-rc.1",
"description": "A collection of dgeni packages for generating documentation from source code",
"scripts": {
"test": "yarn build && jasmine-node .",
"cover": "yarn build && istanbul cover jasmine-node -- .",
"docs": "dgeni ./docs",
"changelog": "changez -o changes.md",
"build": "tsc -p typescript",
"prepublish": "git clean -xdf typescript && yarn build",
"watch": "tsc -p typescript -w"
},
"engines": {
"node": ">=6.9.1",
"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": "0.0.2",
"catharsis": "^0.8.1",
"change-case": "3.0.0",
"dgeni": "^0.4.9",
"espree": "^2.2.3",
"estraverse": "^4.1.0",
"glob": "^7.0.5",
"htmlparser2": "^3.7.3",
"lodash": "^4.13.1",
"marked": "^0.3.2",
"minimatch": "^3.0.2",
"mkdirp": "^0.5.1",
"mkdirp-promise": "^5.0.0",
"node-html-encoder": "0.0.2",
"nunjucks": "^3.0.1",
"semver": "^5.2.0",
"shelljs": "^0.7.0",
"spdx-license-list": "^2.1.0",
"stringmap": "^0.2.2",
"typescript": "^2.3.4"
},
"devDependencies": {
"@types/glob": "^5.0.30",
"@types/jasmine": "^2.5.51",
"@types/lodash": "^4.14.66",
"@types/node": "^7.0.29",
"changez": "^2.1.1",
"changez-angular": "^2.1.0",
"istanbul": "^0.2.7",
"jasmine-node": "^2.0.0",
"jasmine-ts": "^0.1.3",
"rewire": "~2.0.0",
"tslint": "^5.4.3"
},
"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]>"
]
}