forked from storybookjs/babel-plugin-react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.23 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
{
"version": "4.2.1",
"name": "babel-plugin-react-docgen",
"description": "Babel plugin to add react-docgen info into your code",
"repository": "https://github.com/storybooks/babel-plugin-react-docgen",
"author": "Madushan Nishantha <j.l.madushan@gmail.com>",
"contributors": [
"Charles Lehnert"
],
"main": "lib/index.js",
"files": [
"*.md",
"lib/**/*"
],
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.6.3",
"@babel/register": "^7.6.2",
"jest": "^24.9.0",
"jest-specific-snapshot": "^2.0.0",
"react-docgen-deprecation-handler": "1.1.1"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src --out-dir lib",
"test": "jest",
"install": "npm run build",
"prepare": "npm run test && npm run clean && npm run build"
},
"keywords": [
"react",
"docs",
"docgen",
"babel-plugin"
],
"dependencies": {
"ast-types": "^0.14.2",
"lodash": "^4.17.15",
"react-docgen": "^6.0.0-alpha.0"
},
"license": "MIT"
}