From 15f516624bb6f54edb152f3555d9bdb83bce3b71 Mon Sep 17 00:00:00 2001 From: Erich Gamma Date: Tue, 17 Nov 2015 09:44:57 -0500 Subject: [PATCH] preparting to package --- LICENSE | 21 +++++++++++++++++++++ package.json | 16 ++++++++++++---- src/main.ts | 2 -- thirdpartynotices.txt | 31 +++++++++++++++++++++++++++++++ 4 files changed, 64 insertions(+), 6 deletions(-) create mode 100644 LICENSE create mode 100644 thirdpartynotices.txt diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..49d2166 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Microsoft + +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/package.json b/package.json index e4adbce..92c24db 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,21 @@ { - "name": "npm-script-run", + "name": "vscode-npm-script", "description": "Support to run npm scripts ", "version": "0.0.1", "publisher": "eg2", "engines": { - "vscode": "0.10.1" + "vscode": "^0.10.1" + }, + "homepage": "https://github.com/Microsoft/vscode-npm-scripts/blob/master/README.md", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/vscode-npm-scripts.git" + }, + "bugs": { + "url": "https://github.com/Microsoft/vscode-npm-scripts/issues" }, "categories": [ - "Others" + "Other" ], "activationEvents": [ "onCommand:npm-script.install", @@ -20,7 +28,7 @@ "commands": [ { "command": "npm-script.install", - "title": "npm install", + "title": "install", "category": "npm" }, { diff --git a/src/main.ts b/src/main.ts index 9611c40..4a86ba1 100644 --- a/src/main.ts +++ b/src/main.ts @@ -6,9 +6,7 @@ import { window, commands, workspace, OutputChannel, ExtensionContext, ViewColum import { runInTerminal } from 'run-in-terminal'; interface Script extends QuickPickItem { - label: string; execute(): void; - description: string; } let outputChannel: OutputChannel; diff --git a/thirdpartynotices.txt b/thirdpartynotices.txt new file mode 100644 index 0000000..b9051ba --- /dev/null +++ b/thirdpartynotices.txt @@ -0,0 +1,31 @@ +THIRD-PARTY SOFTWARE NOTICES AND INFORMATION +For Microsoft vscode-tslint + +This project incorporates material from the project(s) listed below (collectively, “Third Party Code”). +Microsoft is not the original author of the Third Party Code. The original copyright notice and license +under which Microsoft received such Third Party Code are set out below. This Third Party Code is licensed +to you under their original license terms set forth below. Microsoft reserves all other rights not expressly +granted, whether by implication, estoppel or otherwise. + +1. DefinitelyTyped version 0.0.1 (https://github.com/borisyankov/DefinitelyTyped) + +This project is licensed under the MIT license. +Copyrights are respective of each contributor listed at the beginning of each definition file. + +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