-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
74 lines (74 loc) · 2.1 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
{
"name": "dgeni",
"version": "0.4.14",
"description": "Flexible JavaScript documentation generator used by both AngularJS and Angular",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"dgeni": "lib/gen-docs.js"
},
"files": [
"lib",
"src"
],
"scripts": {
"prepublish": "tsc",
"prebuild": "rm -rf lib",
"build": "tsc",
"postbuild": "chmod +x lib/gen-docs.js",
"watch": "tsc -w",
"test": "mocha --require ts-node/register -R spec src/**/*.spec.ts",
"docs": "node lib/gen-docs.js ./docs/dgeni-docs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/dgeni.git"
},
"author": "Pete Bacon Darwin",
"license": "MIT",
"dependencies": {
"canonical-path": "~0.0.2",
"clonedeep": "^2.0.0",
"dependency-graph": "^0.7.0",
"di": "0.0.1",
"fast-deep-equal": "^3.1.3",
"objectdiff": "^1.1.0",
"validate.js": "^0.12.0",
"winston": "^2.1.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.1",
"@types/yargs": "^16.0.0",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"dgeni-packages": "^0.28.4",
"mocha": "^8.3.0",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"typescript": "^3.2.2"
},
"contributors": [
"Pete Bacon Darwin <pete@bacondarwin.com>",
"forresst <forresst@voila.fr>",
"Pascal Precht <pascal.precht@googlemail.com>",
"Matias Niemelä <matias@yearofmoo.com>",
"nate-wilkins <nwilkins2012@gmail.com>",
"Donald Pipowitch <pipo@senaeh.de>",
"thorn0 <thorn.mailbox@gmail.com>",
"Jeff Cross <middlefloor@gmail.com>",
"Andres Dominguez <andresdominguez@users.noreply.github.com>",
"Jeremy Attali <jeremy.attali@gmail.com>",
"Michael J. Zoidl <me@michaelzoidl.com>",
"Ivan Vorobkalo <ivan.vorobkalo@matrix42.com>",
"Vlad Ioffe <vlio20@gmail.com>",
"geminiyellow <geminiyellow@gmail.com>",
"Adam Herrmann <aherrmann@factset.com>",
"Darryl Pogue <darryl@ayogo.com>"
],
"bugs": {
"url": "https://github.com/angular/dgeni/issues"
}
}