Skip to content

Commit 40b876c

Browse files
committed
initial configuration
1 parent e6aa1fd commit 40b876c

File tree

6 files changed

+74
-0
lines changed

6 files changed

+74
-0
lines changed

.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": [
3+
"es2015",
4+
"stage-2",
5+
"react",
6+
"flow",
7+
]
8+
}

.flowconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[ignore]
2+
3+
[include]
4+
5+
[libs]
6+
7+
[lints]
8+
9+
[options]

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# jest testing
9+
coverage
10+
11+
# Dependency directories
12+
node_modules/
13+
14+
# Yarn Integrity file
15+
.yarn-integrity
16+
17+
# Distributed code
18+
lib

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/

package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "material-ui-layout",
3+
"version": "0.0.1",
4+
"description": "Layout components for material-ui",
5+
"main": "./lib/index.js",
6+
"scripts": {
7+
"build": "babel src/ -d lib/",
8+
"flow": "flow",
9+
"test": "jest",
10+
"test:coverage": "jest --coverage",
11+
"prepublish": "npm run test && npm run build"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/Zetoff/material-ui-layout.git"
16+
},
17+
"keywords": [
18+
"material-ui",
19+
"layout",
20+
"react"
21+
],
22+
"author": "polguixe",
23+
"license": "MIT",
24+
"bugs": {
25+
"url": "https://github.com/Zetoff/material-ui-layout/issues"
26+
},
27+
"homepage": "https://github.com/Zetoff/material-ui-layout#readme",
28+
"devDependencies": {
29+
"babel-cli": "^6.26.0",
30+
"babel-jest": "^21.0.2",
31+
"babel-preset-es2015": "^6.24.1",
32+
"babel-preset-react": "^6.24.1",
33+
"babel-preset-stage-2": "^6.24.1",
34+
"flow-bin": "^0.54.1",
35+
"jest": "^21.0.2"
36+
}
37+
}

src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default {};

0 commit comments

Comments
 (0)