Skip to content

Commit

Permalink
version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunlebron committed Jan 6, 2017
1 parent fbc1e6c commit 491eb21
Showing 1 changed file with 53 additions and 53 deletions.
106 changes: 53 additions & 53 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
{
"name": "vscode-parinfer",
"displayName": "Parinfer",
"description": "Parinfer for VS Code",
"version": "0.2.3",
"publisher": "shaunlebron",
"icon": "icon.png",
"engines": {
"vscode": "0.10.x"
},
"repository": {
"type": "git",
"url": "https://github.com/shaunlebron/vscode-parinfer"
},
"activationEvents": [
"onLanguage:clojure"
],
"main": "./out/extension",
"contributes": {
"keybindings": [
{
"command": "parinfer.toggleMode",
"key": "Ctrl+8",
"mac": "Cmd+8"
},
{
"command": "parinfer.disable",
"key": "Ctrl+9",
"mac": "Cmd+9"
}
"name": "vscode-parinfer",
"displayName": "Parinfer",
"description": "Parinfer for VS Code",
"version": "0.4.0",
"publisher": "shaunlebron",
"icon": "icon.png",
"engines": {
"vscode": "0.10.x"
},
"repository": {
"type": "git",
"url": "https://github.com/shaunlebron/vscode-parinfer"
},
"activationEvents": [
"onLanguage:clojure"
],
"commands": [
{
"command": "parinfer.toggleMode",
"title": "Parinfer: Toggle Mode"
},
{
"command": "parinfer.disable",
"title": "Parinfer: Disable"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"dependencies": {
"parinfer": "^2.0.0"
},
"devDependencies": {
"@types/node": "^6.0.51",
"typescript": "^2.0.10"
},
"license": "MIT"
}
"main": "./out/extension",
"contributes": {
"keybindings": [
{
"command": "parinfer.toggleMode",
"key": "Ctrl+8",
"mac": "Cmd+8"
},
{
"command": "parinfer.disable",
"key": "Ctrl+9",
"mac": "Cmd+9"
}
],
"commands": [
{
"command": "parinfer.toggleMode",
"title": "Parinfer: Toggle Mode"
},
{
"command": "parinfer.disable",
"title": "Parinfer: Disable"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"dependencies": {
"parinfer": "^2.0.0"
},
"devDependencies": {
"@types/node": "^6.0.51",
"typescript": "^2.0.10"
},
"license": "MIT"
}

0 comments on commit 491eb21

Please sign in to comment.