forked from ZachBray/react-flex-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 KB
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
{
"name": "react-flex-layout",
"version": "0.9.3",
"description": "Simple layouts for full screen React applications",
"main": "dist/react-flex-layout.min.js",
"repository": {
"type": "git",
"url": "https://github.com/AdaptiveConsulting/react-flex-layout"
},
"keywords": [
"react",
"react-component",
"flex",
"layout"
],
"scripts": {
"dev": "webpack-dev-server --progress --colors --hot -d --config _webpack.config.js",
"build:dev": "webpack",
"prebuild:demo": "npm run build:dist",
"build:demo": "webpack --config _webpack.demo.config.js",
"build:dist": "webpack --config _webpack.dist.config.js --optimize-minimize",
"test": "karma start _karma.conf.js --autowatch --no-single-run",
"prepublish": "npm run build:dist"
},
"author": "Adaptive Consulting, Jake Ginnivan <jake@ginnivan.net>",
"license": "MIT",
"devDependencies": {
"babel-core": "^5.2.3",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.2.3",
"css-loader": "^0.12.0",
"domready": "^1.0.8",
"eslint": "^0.20.0",
"eslint-plugin-react": "^2.2.0",
"expect": "^1.6.0",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.1.10",
"karma-webpack": "^1.7.0",
"location-bar": "^2.0.0",
"mocha": "^2.2.4",
"react-addons-test-utils": "^0.14.6",
"sinon": "^1.14.1",
"style-loader": "^0.12.1",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"events": "^1.0.2"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
}
}