This repository has been archived by the owner on Jul 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
58 lines (58 loc) · 1.69 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
53
54
55
56
57
58
{
"name": "react-radio-buttons",
"version": "1.2.2",
"description": "Well-designed radio buttons for react.",
"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",
"test": "karma start karma.conf.js --single-run --no-auto-watch",
"test-watch": "karma start karma.conf.js --no-single-run --auto-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mu29/react-radio-buttons.git"
},
"keywords": [
"facebook",
"react",
"radio",
"radio-group",
"radio-button",
"component",
"react-component"
],
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-loader": ">=6.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"enzyme": "^2.8.2",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"jasmine": "^2.6.0",
"karma": "^1.7.0",
"karma-jasmine": "^1.1.0",
"karma-nyan-reporter": "^0.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"sinon": "^2.3.4",
"webpack": "^2.0.0"
},
"author": "InJung Chung <mu29@yeoubi.net>",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.3.2"
}
}