forked from storybookjs/babel-plugin-react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 915 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
{
"version": "1.5.0",
"name": "babel-plugin-react-docgen",
"description": "Babel plugin to add react-docgen info into your code",
"repository": "https://github.com/kadirahq/babel-plugin-react-docgen",
"author": "Madushan Nishantha <[email protected]>",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "6.x.x",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.16.0",
"babel-preset-react": "6.16.0",
"mocha": "2.x.x"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react",
"docs",
"docgen",
"babel-plugin"
],
"dependencies": {
"babel-types": "^6.24.1",
"lodash": "4.x.x",
"react-docgen": "^2.15.0"
},
"license": "MIT"
}