-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
52 lines (52 loc) · 1.28 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
48
49
50
51
52
{
"name": "react-radio-group",
"version": "3.0.3",
"description": "Better radio buttons.",
"main": "lib/index.js",
"scripts": {
"example": "webpack -w -d --config example/webpack.config.js example/example.jsx example/all.js",
"build-umd": "webpack index.jsx umd/index.js",
"build-cjs": "babel index.jsx -d lib",
"prerelease": "npm run build-umd && npm run build-cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/chenglou/react-radio-group.git"
},
"keywords": [
"facebook",
"react",
"radio",
"radio-group",
"component",
"react-component"
],
"dependencies": {
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.2.17",
"babel-loader": "^5.0.0",
"react": ">=0.14.0",
"react-dom": ">=15.5.4",
"webpack": "^1.8.11"
},
"author": "chenglou <[email protected]>",
"contributors": [
{
"name": "Jamison Dance",
"email": "[email protected]",
"url": "http://jamisondance.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/chenglou/react-radio-group/issues"
},
"homepage": "https://github.com/chenglou/react-radio-group",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=15.5.4"
}
}