Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason-Rev committed Jun 20, 2016
1 parent 362189a commit 3fea927
Showing 1 changed file with 115 additions and 110 deletions.
225 changes: 115 additions & 110 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,114 +1,119 @@
{
"name": "code-spell-checker",
"description": "Simple spellchecker for source code",
"displayName": "Source Code Spell Checker",
"icon": "images/icon2.png",
"author": "Jason Dent",
"license": "MIT",
"version": "0.9.0",
"publisher": "streetsidesoftware",
"repository": {
"type": "git",
"url": "https://github.com/Jason-Rev/vscode-spell-checker"
},
"bugs": {
"url": "https://github.com/Jason-Rev/vscode-spell-checker/issues"
},
"homepage": "https://github.com/Jason-Rev/vscode-spell-checker/blob/master/client/README.md",
"engines": {
"vscode": "^1.2.1"
},
"categories": [
"Linters",
"Other"
],
"keywords": [
"spell",
"checker",
"spellchecker"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{"command": "cSpell.addWordToDictionary", "title": "Add Word to Dictionary"}
"name": "code-spell-checker",
"description": "Simple spellchecker for source code",
"displayName": "Source Code Spell Checker",
"icon": "images/icon2.png",
"author": "Jason Dent",
"license": "MIT",
"version": "0.10.0",
"publisher": "streetsidesoftware",
"repository": {
"type": "git",
"url": "https://github.com/Jason-Rev/vscode-spell-checker"
},
"bugs": {
"url": "https://github.com/Jason-Rev/vscode-spell-checker/issues"
},
"homepage": "https://github.com/Jason-Rev/vscode-spell-checker/blob/master/client/README.md",
"engines": {
"vscode": "^1.2.1"
},
"categories": [
"Linters",
"Other"
],
"configuration": {
"type": "object",
"title": "Code Spell Checker Configuration",
"properties": {
"cSpell.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of spelling errors per document."
},
"cSpell.numSuggestions": {
"type": "number",
"default": 8,
"description": "Controls the number of suggestions shown."
},
"cSpell.minWordLength": {
"type": "number",
"default": 4,
"description": "The minimum length of a word before checking it against a dictionary."
},
"cSpell.enabledLanguageIds": {
"type": "array",
"default": [
"csharp",
"go",
"javascript",
"javascriptreact",
"markdown",
"php",
"plaintext",
"text",
"typescript",
"typescriptreact",
"yml"
],
"description": "Specify file types to spell check."
},
"cSpell.words": {
"type": "array",
"default": [],
"description": "Words to add to dictionary for a workspace."
},
"cSpell.userWords": {
"type": "array",
"default": [],
"description": "User words to add to dictionary. Should only be in the user settings."
},
"cSpell.ignorePaths": {
"type": "array",
"default": [
"node_modules", "vscode-extension", ".git"
],
"description": "Specify paths/files to ignore."
"keywords": [
"spell",
"checker",
"spellchecker"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "cSpell.addWordToDictionary",
"title": "Add Word to Dictionary"
}
],
"configuration": {
"type": "object",
"title": "Code Spell Checker Configuration",
"properties": {
"cSpell.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of spelling errors per document."
},
"cSpell.numSuggestions": {
"type": "number",
"default": 8,
"description": "Controls the number of suggestions shown."
},
"cSpell.minWordLength": {
"type": "number",
"default": 4,
"description": "The minimum length of a word before checking it against a dictionary."
},
"cSpell.enabledLanguageIds": {
"type": "array",
"default": [
"csharp",
"go",
"javascript",
"javascriptreact",
"markdown",
"php",
"plaintext",
"text",
"typescript",
"typescriptreact",
"yml"
],
"description": "Specify file types to spell check."
},
"cSpell.words": {
"type": "array",
"default": [],
"description": "Words to add to dictionary for a workspace."
},
"cSpell.userWords": {
"type": "array",
"default": [],
"description": "User words to add to dictionary. Should only be in the user settings."
},
"cSpell.ignorePaths": {
"type": "array",
"default": [
"node_modules",
"vscode-extension",
".git"
],
"description": "Specify paths/files to ignore."
}
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"chai": "^3.5.0",
"lorem-ipsum": "^1.0.3",
"typescript": "^1.8.9",
"vscode": "^0.11.13"
},
"dependencies": {
"comment-json": "^1.1.3",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"rx": "^4.1.0",
"tsmerge": "^1.0.4",
"vscode-languageclient": "^2.0.0",
"xregexp": "^3.1.1"
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"chai": "^3.5.0",
"lorem-ipsum": "^1.0.3",
"typescript": "^1.8.9",
"vscode": "^0.11.13"
},
"dependencies": {
"comment-json": "^1.1.3",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"rx": "^4.1.0",
"tsmerge": "^1.0.4",
"vscode-languageclient": "^2.0.0",
"xregexp": "^3.1.1"
}
}
}

0 comments on commit 3fea927

Please sign in to comment.