forked from storybookjs/babel-plugin-react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 975 Bytes
/
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
{
"version": "1.9.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 <j.l.madushan@gmail.com>",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.16.0",
"mocha": "^2.0.0"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d 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": {
"babel-types": "^6.24.1",
"lodash": "^4.17.0",
"react-docgen": "^3.0.0-beta11"
},
"license": "MIT"
}