-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "react-layout-components",
"version": "3.0.6",
"description": "Layout Components for React based on Flexbox",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib/"
],
"scripts": {
"build": "babel modules/ --out-dir lib/",
"release": "npm run build && npm publish",
"build:demo": "npm run build && browserify -t babelify demo/app.jsx --outfile demo/bundle.js",
"demo": "npm run build:demo && open demo/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/rofrischmann/react-layout-components/"
},
"keywords": [
"react-component",
"react",
"layout",
"flexbox",
"styling",
"flex",
"layout components",
"layout kit"
],
"author": "Robin Frischmann",
"license": "MIT",
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^11.0.1",
"react": "^14.0.0 || ^15.0.0",
"react-dom": "^14.0.0 || ^15.0.0"
},
"dependencies": {
"assign-styles": "^1.0.2",
"inline-style-prefixer": "^3.0.0",
"prop-types": "^15.5.10"
}
}