Pārlūkot izejas kodu

added badges to readme and package.json

Diana Arreola 4 gadi atpakaļ
vecāks
revīzija
3362412e7f

+ 1 - 0
extension/code-editor-integration/README.md

@@ -1,4 +1,5 @@
 # Code Editor Integration Development
+![Node.js CI](https://github.com/gleitz/howdoi/workflows/Node.js%20CI/badge.svg)
 
 Simplifies the process of integrating howdoi as a code editor extension.
 

+ 21 - 0
extension/vscode-howdoi/LICENSE.txt

@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2020 Diana Arreola
+
+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.

+ 30 - 3
extension/vscode-howdoi/package.json

@@ -1,15 +1,19 @@
 {
   "name": "howdoi",
   "displayName": "howdoi",
-  "publisher": "Diana",
+  "publisher": "Diana Arreola and Benjamin Gleitzman",
   "description": "Receive instant coding answers via a code editor.",
   "version": "0.0.1",
   "engines": {
     "vscode": "^1.46.0"
   },
   "categories": [
-    "Other"
+    "Other",
+    "Programming Languages"
   ],
+  "author": {
+    "name": "diana arreola"
+  },
   "activationEvents": [
     "onCommand:howdoi.extension"
   ],
@@ -51,5 +55,28 @@
     "@types/chai": "^4.2.12",
     "ncp": "^2.0.0",
     "rimraf": "^3.0.2"
-  }
+  },
+  "badges": [
+    {
+      "url": "https://secure.travis-ci.org/gleitz/howdoi.png?branch=master" ,
+      "href": "https://travis-ci.org/github/gleitz/howdoi",
+      "description": "Howdoi Travis CI Build"
+
+    },
+    {
+      "url": "https://github.com/gleitz/howdoi/workflows/Node.js%20CI/badge.svg" ,
+      "href": "https://github.com/gleitz/howdoi/actions?query=workflow%3A%22Node.js+CI%22",
+      "description": "Github Actions Node.js CI"
+
+    }
+  ],
+  "license": "SEE LICENSE IN LICENSE.txt",
+  "bugs": {
+    "url": "https://github.com/gleitz/howdoi/issues"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/gleitz/howdoi.git"
+  },
+  "homepage": "https://github.com/gleitz/howdoi/blob/master/extension/vscode-howdoi/README.md"
 }