-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 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
{
"name": "gulp-react-docs",
"version": "1.0.1",
"description": "A gulp plugin for generating documentation in Markdown format for React components based on their `propTypes`.",
"license": "MIT",
"main": "index.js",
"contributors": [
"Mars Jullian <[email protected]>",
"Jyri Tuulos <[email protected]>",
"Jessica Grist <[email protected]>"
],
"keywords": [
"gulp",
"gulpplugin",
"plugin",
"react",
"documentation-generation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adroll/gulp-react-docs.git"
},
"bugs": {
"url": "https://github.com/adroll/gulp-react-docs/issues"
},
"dependencies": {
"handlebars": "^4.0.5",
"lodash": "^4.17.15",
"react-docgen": "^5.3.0",
"through2": "^2.0.0"
},
"devDependencies": {
"del": "^2.2.0",
"doctoc": "^0.15.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.0",
"gulp-load-plugins": "^1.1.0",
"gulp-tap": "^0.1.3"
},
"engines": {
"node": ">=10"
}
}