-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 KB
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
{
"name": "simple-react-docgen",
"version": "1.1.1",
"description": "Generate simple React components documentation in Markdown",
"main": "dist/index.js",
"bin": {
"simple-react-docgen": "dist/simple-react-docgen.js"
},
"scripts": {
"lint": "eslint src",
"transpile": "babel src -D -d dist --ignore '__tests__'",
"watch": "babel src -D -d dist --ignore '__tests__' --watch",
"pretest": "npm run transpile",
"test": "jest",
"preversion": "npm run lint && npm test",
"version": "git add package.json && git commit -m \"Bump version $npm_package_version\" && git tag -a $npm_package_version -m \"Version $npm_package_version\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/team-767/simple-react-docgen.git"
},
"keywords": [
"react",
"react-docgen",
"markdown"
],
"author": "Renan Mendes Carvalho <[email protected]> (https://github.com/aitherios)",
"license": "MIT",
"bugs": {
"url": "https://github.com/team-767/simple-react-docgen/issues"
},
"homepage": "https://github.com/team-767/simple-react-docgen#readme",
"dependencies": {
"handlebars": "^4.0.5",
"node-dir": "^0.1.16",
"nomnom": "^1.8.1",
"react-docgen": "^2.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^16.0.0",
"babel-preset-latest": "^6.16.0",
"eslint": "^3.9.1",
"eslint-config-react-app": "^0.3.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"jest-cli": "^16.0.2",
"react": "^15.3.2"
},
"babel": {
"presets": [
"latest"
]
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"testPathDirs": [
"src"
],
"testRegex": "/__tests__/.*-test\\.js$"
},
"maintainers": [
"Renan Mendes Carvalho <[email protected]> (https://github.com/aitherios)"
],
"contributors": [
"Renan Mendes Carvalho <[email protected]> (https://github.com/aitherios)"
]
}