-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "gulp-typedoc",
"version": "3.0.2",
"description": "Gulp plugin for the TypeDoc typescript documentation tool.",
"repository": {
"type": "git",
"url": "https://github.com/rogierschouten/gulp-typedoc.git"
},
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js && tsc -p test-types",
"upgrade-dependencies": "node upgrade-dependencies.js"
},
"keywords": [
"typedoc",
"typescript",
"gulpplugin"
],
"author": {
"name": "Rogier Schouten",
"url": "https://github.com/rogierschouten/",
"email": "[email protected]"
},
"license": "ISC",
"peerDependencies": {
"typedoc": ">=0.20.34"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"event-stream": "^4.0.1",
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"fs-extra": "^9.1.0",
"gulp": "^4.0.2",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"typedoc": "*",
"typescript": "^4.2.3"
}
}