From 9b4f514604f42f740daa7f9e02b4fc430cb43b20 Mon Sep 17 00:00:00 2001 From: Matt Fuller Date: Tue, 30 Jul 2019 08:55:54 -0400 Subject: [PATCH] Adding NPM Package File and License --- LICENSE | 21 +++++++++++++++++++++ package.json | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 LICENSE create mode 100644 package.json diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a0f827c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015-2017 Evgeny Poberezkin + +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 0000000..b3a0c2f --- /dev/null +++ b/package.json @@ -0,0 +1,35 @@ +{ + "name": "oci-rest-apis-nodejs", + "version": "1.0.0", + "description": "OCI API SDK for Node", + "main": "oci.js", + "directories": { + "example": "examples" + }, + "dependencies": { + "binary-string": "^1.0.0", + "deasync": "^0.1.13", + "http-signature": "^1.2.0", + "jssha": "^2.3.1", + "read-chunk": "^3.0.0" + }, + "devDependencies": {}, + "scripts": { + "test": "test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/christopherbeck/OCI-Rest-APIs-nodejs.git" + }, + "keywords": [ + "oci", + "node", + "oracle" + ], + "author": "Chistopher Beck", + "license": "MIT", + "bugs": { + "url": "https://github.com/christopherbeck/OCI-Rest-APIs-nodejs/issues" + }, + "homepage": "https://github.com/christopherbeck/OCI-Rest-APIs-nodejs#readme" +}