diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b3cb65d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +images +example diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..42c9490 --- /dev/null +++ b/.npmignore @@ -0,0 +1,40 @@ +# OSX +# +.DS_Store + +# Xcode +# +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace + +# Android/IJ +# +.idea +.gradle +local.properties + +# node.js +# +node_modules/ +npm-debug.log + +# BUCK +buck-out/ +\.buckd/ +android/app/libs +android/keystores/debug.keystore diff --git a/package.json b/package.json new file mode 100644 index 0000000..62f79ca --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "react-native-banner", + "version": "0.1.0", + "description": "react-native-banner", + "main": "index.js", + "directories": { + "example": "example" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/wenxucheng/react-native-banner.git" + }, + "author": { + "name": "wenxucheng", + "email": "wenxucheng@163.com" + }, + "license": "ISC", + "bugs": { + "url": "https://github.com/wenxucheng/react-native-banner/issues" + }, + "homepage": "https://github.com/wenxucheng/react-native-banner#readme" +}