forked from storybookjs/babel-plugin-react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"version": "3.1.0",
"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 <[email protected]>",
"contributors": [
"Charles Lehnert"
],
"main": "lib/index.js",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"mocha": "^5.2.0",
"react-docgen-deprecation-handler": "1.1.1"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src --out-dir lib",
"test": "mocha --compilers js:@babel/register",
"test:watch": "npm run test -- --watch",
"prepare": "npm run test && npm run clean && npm run build"
},
"keywords": [
"react",
"docs",
"docgen",
"babel-plugin"
],
"dependencies": {
"lodash": "^4.17.11",
"react-docgen": "^4.1.0",
"recast": "^0.14.7"
},
"license": "MIT"
}