Skip to content

Commit e472115

Browse files
author
jh3r
committed
Project init
1 parent 7ef72b3 commit e472115

8 files changed

+62
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
6+
indent_style = space
7+
indent_size = 2
8+
tab_width = 2
9+
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist/

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
examples/
3+
src/

.prettierrc.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
parser: 'babylon',
3+
printWidth: 120,
4+
semi: true,
5+
singleQuote: true
6+
};

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# CHANGELOG
2+
3+
## 0.1.0 (2018-10-xx)

package-lock.json

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "react-native-webview-js-bridge",
3+
"version": "1.0.0",
4+
"description": "A js bridge for react-native webview.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/react-native-org/react-native-webview-js-bridge.git"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/react-native-org/react-native-webview-js-bridge/issues"
18+
},
19+
"homepage": "https://github.com/react-native-org/react-native-webview-js-bridge#readme",
20+
"dependencies": {
21+
"events": "^3.0.0"
22+
}
23+
}

src/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)