From c50673dba44e2ef2f7f1b5d8298849da7c8db91d Mon Sep 17 00:00:00 2001 From: Martijn Swaagman Date: Thu, 28 Feb 2019 09:58:26 +0100 Subject: [PATCH] [initial] npm init and add license --- LICENSE.md | 21 +++++++++++++++++++++ package.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 LICENSE.md create mode 100644 package.json diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 00000000..222b422e --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 React Native Community + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/package.json b/package.json new file mode 100644 index 00000000..2ccc3be1 --- /dev/null +++ b/package.json @@ -0,0 +1,28 @@ +{ + "name": "react-native-datetimepicker", + "version": "0.0.0", + "description": "DateTimePicker component for React Native", + "main": "index.js", + "scripts": { + "test": "jest" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/react-native-community/react-native-datetimepicker.git" + }, + "keywords": [ + "react-native-component", + "react-native", + "ios", + "android", + "datepicker", + "timepicker", + "datetime" + ], + "author": "Martijn Swaagman (https://github.com/swaagie)", + "license": "MIT", + "bugs": { + "url": "https://github.com/react-native-community/react-native-datetimepicker/issues" + }, + "homepage": "https://github.com/react-native-community/react-native-datetimepicker#readme" +}