Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 23698a9

Browse files
committed
initialize project
0 parents  commit 23698a9

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
indent_style = space
7+
indent_size = 2
8+
trim_trailing_whitespace = true

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
.eslintrc.json
3+
jsconfig.json
4+
yarn.lock
5+
.vscode
6+
npm-debug.log

package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "react-native-responsive-dimensions",
3+
"version": "1.0.0",
4+
"description": "Resposive fontSize, height and width for your react-native components.",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"start": "node src/index.js",
8+
"test": "exit 0"
9+
},
10+
"author": "DaniAkash <s.daniakash@gmail.com> (https://github.com/DaniAkash)",
11+
"license": "MIT"
12+
}

src/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)