Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfn committed Jun 18, 2016
1 parent 9cb8e6f commit 440b3b7
Showing 1 changed file with 107 additions and 92 deletions.
199 changes: 107 additions & 92 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,97 +1,112 @@
{
"name": "vim",
"displayName": "Vim",
"description": "Vim emulation for Visual Studio Code",
"icon": "images/icon.png",
"version": "0.0.21",
"publisher": "vscodevim",
"galleryBanner": {
"color": "#a5c9a2",
"theme": "light"
},
"license": "MIT",
"keywords": [
"vim",
"vi",
"vscodevim",
"vsc-vim"
],
"repository": {
"type": "git",
"url": "https://github.com/VSCodeVim/Vim.git"
},
"homepage": "https://github.com/VSCodeVim/Vim",
"bugs": {
"url": "https://github.com/VSCodeVim/Vim/issues"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{ "command": "extension.showCmdLine", "title": "Vim: Show Command Line" }
"name": "vim",
"displayName": "Vim",
"description": "Vim emulation for Visual Studio Code",
"icon": "images/icon.png",
"version": "0.0.22",
"publisher": "vscodevim",
"galleryBanner": {
"color": "#a5c9a2",
"theme": "light"
},
"license": "MIT",
"keywords": [
"vim",
"vi",
"vscodevim",
"vsc-vim"
],
"keybindings": [
{ "key": "Escape", "command": "extension.vim_esc", "when": "editorTextFocus" },
{ "key": "Enter", "command": "extension.vim_enter", "when": "editorTextFocus" },
{ "key": "Backspace", "command": "extension.vim_backspace", "when": "editorTextFocus" }
"repository": {
"type": "git",
"url": "https://github.com/VSCodeVim/Vim.git"
},
"homepage": "https://github.com/VSCodeVim/Vim",
"bugs": {
"url": "https://github.com/VSCodeVim/Vim/issues"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"configuration": {
"title": "Vim Configuration",
"type": "object",
"properties": {
"vim.keyboardLayout": {
"default": "en-US (QWERTY)",
"type": "string",
"description": "Keyboard layout to use to translated key presses."
},
"vim.normalModeKeyBindings": {
"type": "object",
"description": "Keybinding overrides to use for normal mode."
},
"vim.insertModeKeyBindings": {
"type": "object",
"description": "Keybinding overrides to use for insert mode."
},
"vim.visualModeKeyBindings": {
"type": "object",
"description": "Keybinding overrides to use for visual mode."
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.showCmdLine",
"title": "Vim: Show Command Line"
}
],
"keybindings": [
{
"key": "Escape",
"command": "extension.vim_esc",
"when": "editorTextFocus"
},
{
"key": "Enter",
"command": "extension.vim_enter",
"when": "editorTextFocus"
},
{
"key": "Backspace",
"command": "extension.vim_backspace",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "Vim Configuration",
"type": "object",
"properties": {
"vim.keyboardLayout": {
"default": "en-US (QWERTY)",
"type": "string",
"description": "Keyboard layout to use to translated key presses."
},
"vim.normalModeKeyBindings": {
"type": "object",
"description": "Keybinding overrides to use for normal mode."
},
"vim.insertModeKeyBindings": {
"type": "object",
"description": "Keybinding overrides to use for insert mode."
},
"vim.visualModeKeyBindings": {
"type": "object",
"description": "Keybinding overrides to use for visual mode."
}
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"test": "node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install && gulp init"
},
"dependencies": {
"lodash": "^4.12.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-bump": "^2.1.0",
"gulp-filter": "^4.0.0",
"gulp-git": "^1.7.1",
"gulp-mocha": "^2.2.0",
"gulp-shell": "^0.5.2",
"gulp-soften": "^0.0.1",
"gulp-tag-version": "^1.3.0",
"gulp-trimlines": "^1.0.0",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.13.4",
"gulp-typings": "^2.0.0",
"tslint": "^3.10.2",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"vscode": "^0.11.13"
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"test": "node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install && gulp init"
},
"dependencies": {
"lodash": "^4.12.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-bump": "^2.1.0",
"gulp-filter": "^4.0.0",
"gulp-git": "^1.7.1",
"gulp-mocha": "^2.2.0",
"gulp-shell": "^0.5.2",
"gulp-soften": "^0.0.1",
"gulp-tag-version": "^1.3.0",
"gulp-trimlines": "^1.0.0",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.13.4",
"gulp-typings": "^2.0.0",
"tslint": "^3.10.2",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"vscode": "^0.11.13"
}
}
}

0 comments on commit 440b3b7

Please sign in to comment.