From 6306ad17c386a9d0e1732ffddb68b3f50f964eb9 Mon Sep 17 00:00:00 2001 From: Brent Shikoski Date: Mon, 25 Sep 2023 20:57:51 -0500 Subject: [PATCH] Add license information to modules. --- packages/bruno-cli/package.json | 1 + packages/bruno-graphql-docs/license.md | 22 ++++++++++++++++++++ packages/bruno-graphql-docs/package.json | 1 + packages/bruno-js/package.json | 1 + packages/bruno-lang/package.json | 1 + packages/bruno-query/package.json | 1 + packages/bruno-schema/license.md | 22 ++++++++++++++++++++ packages/bruno-schema/package.json | 1 + packages/bruno-vscode-extension/package.json | 1 + 9 files changed, 51 insertions(+) create mode 100644 packages/bruno-graphql-docs/license.md create mode 100644 packages/bruno-schema/license.md diff --git a/packages/bruno-cli/package.json b/packages/bruno-cli/package.json index c8acd5232..d966a8a27 100644 --- a/packages/bruno-cli/package.json +++ b/packages/bruno-cli/package.json @@ -1,6 +1,7 @@ { "name": "@usebruno/cli", "version": "0.8.0", + "license" : "MIT", "main": "src/index.js", "bin": { "bru": "./bin/bru.js" diff --git a/packages/bruno-graphql-docs/license.md b/packages/bruno-graphql-docs/license.md new file mode 100644 index 000000000..f88e206bb --- /dev/null +++ b/packages/bruno-graphql-docs/license.md @@ -0,0 +1,22 @@ + +MIT License + +Copyright (c) 2022 Anoop M D, Anusree P S and Contributors + +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. \ No newline at end of file diff --git a/packages/bruno-graphql-docs/package.json b/packages/bruno-graphql-docs/package.json index 5eb4bfcd2..393a3d792 100644 --- a/packages/bruno-graphql-docs/package.json +++ b/packages/bruno-graphql-docs/package.json @@ -1,6 +1,7 @@ { "name": "@usebruno/graphql-docs", "version": "0.1.0", + "license" : "MIT", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "files": [ diff --git a/packages/bruno-js/package.json b/packages/bruno-js/package.json index ad28493a1..df4e1ee75 100644 --- a/packages/bruno-js/package.json +++ b/packages/bruno-js/package.json @@ -1,6 +1,7 @@ { "name": "@usebruno/js", "version": "0.5.0", + "license" : "MIT", "main": "src/index.js", "files": [ "src", diff --git a/packages/bruno-lang/package.json b/packages/bruno-lang/package.json index d820ccfb0..91ad76885 100644 --- a/packages/bruno-lang/package.json +++ b/packages/bruno-lang/package.json @@ -1,6 +1,7 @@ { "name": "@usebruno/lang", "version": "0.4.0", + "license" : "MIT", "main": "src/index.js", "files": [ "src", diff --git a/packages/bruno-query/package.json b/packages/bruno-query/package.json index 18f356095..140fdeafe 100644 --- a/packages/bruno-query/package.json +++ b/packages/bruno-query/package.json @@ -1,6 +1,7 @@ { "name": "@usebruno/query", "version": "0.1.0", + "license" : "MIT", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/index.d.ts", diff --git a/packages/bruno-schema/license.md b/packages/bruno-schema/license.md new file mode 100644 index 000000000..f88e206bb --- /dev/null +++ b/packages/bruno-schema/license.md @@ -0,0 +1,22 @@ + +MIT License + +Copyright (c) 2022 Anoop M D, Anusree P S and Contributors + +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. \ No newline at end of file diff --git a/packages/bruno-schema/package.json b/packages/bruno-schema/package.json index 3c6704e3d..fdfae5dcb 100644 --- a/packages/bruno-schema/package.json +++ b/packages/bruno-schema/package.json @@ -1,6 +1,7 @@ { "name": "@usebruno/schema", "version": "0.4.0", + "license" : "MIT", "main": "src/index.js", "files": [ "src", diff --git a/packages/bruno-vscode-extension/package.json b/packages/bruno-vscode-extension/package.json index e402a6605..5f0a15e3e 100644 --- a/packages/bruno-vscode-extension/package.json +++ b/packages/bruno-vscode-extension/package.json @@ -3,6 +3,7 @@ "displayName": "Bruno", "description": "Bruno support for Visual Studio Code.", "version": "0.0.1", + "license" : "MIT", "engines": { "vscode": "^1.74.0" },