forked from marborkowski/react-doc-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2 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
{
"name": "react-doc-generator",
"version": "1.2.5",
"description": "Generate a simple React Component documentation in Markdown.",
"main": "dist/index.js",
"bin": {
"react-doc-generator": "dist/react-doc-generator.js"
},
"scripts": {
"lint": "eslint src",
"transpile": "babel src -D -d dist --ignore '__tests__, __mocks__'",
"watch": "babel src -D -d dist --ignore '__tests__,__mocks__' --watch",
"pretest": "npm run transpile",
"preversion": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marborkowski/react-doc-generator.git"
},
"author": "Marcin Borkowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/marborkowski/react-doc-generator/issues"
},
"homepage": "https://github.com/marborkowski/react-doc-generator#readme",
"keywords": [
"react",
"react-docgen",
"markdown",
"documentation",
"generator",
"tool",
"tools",
"docgen",
"readme file",
"readme",
"instruction",
"guide",
"list of components",
"components",
"spa",
"webpack",
"engine"
],
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"commander": "2.9.0",
"handlebars": "^4.0.6",
"node-dir": "^0.1.16",
"react-docgen": "^2.13.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.2.0",
"eslint": "^3.17.0",
"eslint-config-react-app": "^0.5.2",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.0",
"jest-cli": "^19.0.2"
},
"babel": {
"presets": [
"env"
]
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"roots": [
"src"
],
"testRegex": "/__tests__/(.+?).test.js$"
}
}