-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "react-flexbox-layout",
"version": "1.2.8",
"description": "Simple flexible layouts for IE9+",
"main": "lib/index.js",
"scripts": {
"test": "babel-node test/server_side-test",
"build": "rm -rf lib && babel ./src -d lib && cp src/styles.css lib/",
"watch": "babel ./src --watch -d lib",
"examples": "webpack-dev-server --config examples/webpack.config.js --content-base examples --inline --host 0.0.0.0",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byronmwong/react-flexbox-layout.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/byronmwong/react-flexbox-layout/issues"
},
"homepage": "https://github.com/byronmwong/react-flexbox-layout#readme",
"devDependencies": {
"babel": "5.6.5",
"babel-core": "5.6.5",
"babel-loader": "5.1.4",
"chai": "^3.0.0",
"css-loader": "^0.23.1",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.1",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^2.2.5",
"node-libs-browser": "0.5.2",
"prop-types": "^15.5.10",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.0"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"dependencies": {
"classnames": "^2.2.3",
"lodash": "^4.17.11"
}
}