forked from silawrenc/babel-plugin-react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.37 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.37 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
{
"version": "4.3.5-alpha.0",
"name": "@telus-uds/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",
"prepare": "npm run clean && npm run build",
"postinstall": "echo \"You're using a forked version, this fork depends on the react-docgen 6 alpha, check to see if it has been utilised upstream (https://github.com/storybookjs/babel-plugin-react-docgen).\""
},
"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"
}