forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.58 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "reactstrap",
"version": "1.6.0",
"description": "React Bootstrap 4 components compatible with React 0.14.x and 15.x",
"main": "lib/index.js",
"scripts": {
"coverage": "coveralls < ./test/coverage/lcov/lcov.info",
"test": "karma start --single-run --reporters spec,coverage",
"test-watch": "karma start --reporters dots,coverage",
"start": "webpack-dev-server --config ./webpack.dev.config.js --watch",
"build-docs": "WEBPACK_BUILD=production webpack --config ./webpack.dev.config.js --progress --colors",
"build": "WEBPACK_BUILD=production webpack --progress --colors && webpack --progress --colors",
"prebuild": "babel src --out-dir lib",
"create-release": "npm test && sh ./scripts/release",
"publish-release": "npm test && sh ./scripts/publish"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/reactstrap/reactstrap.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"dist"
],
"keywords": [
"bootstrap",
"react",
"component",
"components",
"react-component",
"ui"
],
"contributors": [
"Eddy Hernandez <edward.d.hernandez@gmail.com> (http://eddywashere.com)",
"Chris Burrell <chrisburrell@gmail.com> (https://github.com/cbfx)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reactstrap/reactstrap/issues"
},
"homepage": "https://github.com/reactstrap/reactstrap#readme",
"dependencies": {
"babel-cli": "^6.10.1",
"classnames": "^2.2.3",
"lodash.isfunction": "^3.0.8",
"lodash.omit": "^4.2.0",
"tether": "^1.2.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-addons-transition-group": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-core": "^6.7.5",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "^4.0.0-alpha.2",
"cheerio": "^0.20.0",
"clean-webpack-plugin": "^0.1.8",
"conventional-changelog-cli": "^1.1.1",
"conventional-recommended-bump": "^0.2.0",
"copy-webpack-plugin": "^3.0.1",
"coveralls": "^2.11.9",
"css-loader": "^0.23.1",
"ejs": "^2.4.1",
"enzyme": "^2.4.1",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^9.0.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"eslint-plugin-standard": "^1.3.2",
"extract-text-webpack-plugin": "^1.0.1",
"history": "^3.0.0",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^1.1.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"react": "^15.2.1",
"react-addons-pure-render-mixin": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-addons-transition-group": "^15.2.1",
"react-dom": "^15.2.1",
"react-helmet": "^3.0.1",
"react-highlight": "^0.8.0",
"react-prism": "eddywashere/react-prism#15",
"react-router": "^2.0.1",
"static-site-generator-webpack-plugin": "^2.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}