Gitea-VSCode/package.json
dependabot[bot] 432d9337d6
Bump axios from 0.18.0 to 0.18.1
Bumps [axios](https://github.com/axios/axios) from 0.18.0 to 0.18.1.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v0.18.1/CHANGELOG.md)
- [Commits](https://github.com/axios/axios/compare/v0.18.0...v0.18.1)

Signed-off-by: dependabot[bot] <support@github.com>
2019-06-14 09:42:47 +00:00

93 lines
1.9 KiB
JSON

{
"name": "gitea-vscode",
"displayName": "Gitea-VSCode",
"description": "Gitea Issue Tracker for vs-code",
"publisher": "IJustDev",
"version": "0.0.6",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:open-issues",
"onCommand:giteaIssues.initRepo",
"onCommand:giteaIssues.refreshIssues"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "issue-explorer",
"title": "Gitea-Issues",
"icon": "media/issue.svg"
}
]
},
"views": {
"issue-explorer": [
{
"id": "open-issues",
"name": "Open Issues"
},
{
"id": "closed-issues",
"name": "Closed Issues"
}
]
},
"commands": [
{
"command": "giteaIssues.openIssue",
"title": "Show"
},
{
"command": "giteaIssues.refreshIssues",
"title": "Refresh",
"icon": {
"dark": "resources/dark/refresh.svg",
"light": "resources/light/refresh.svg"
}
},
{
"command": "giteaIssues.initRepo",
"title": "Initialize Gitea-Issue Tracker"
}
],
"menus": {
"view/title": [
{
"command": "giteaIssues.refreshIssues",
"group": "navigation",
"when": "view == open-issues"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"axios": "^0.18.1",
"configparser": "^0.3.6",
"marked": "^0.6.2"
},
"repository": {
"type": "github",
"url": "https://github.com/IJustdev/Gitea-VSCode.git"
}
}