83 lines
1.9 KiB
JSON
83 lines
1.9 KiB
JSON
|
{
|
||
|
"name": "gitignore",
|
||
|
"displayName": "gitignore",
|
||
|
"description": "Language support for .gitignore files. Lets you pull .gitignore files from the https://github.com/github/gitignore repository.",
|
||
|
"version": "0.2.0",
|
||
|
"publisher": "codezombiech",
|
||
|
"icon": "icon.png",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/CodeZombieCH/vscode-gitignore"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/CodeZombieCH/vscode-gitignore/issues"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"engines": {
|
||
|
"vscode": "^0.10.10"
|
||
|
},
|
||
|
"categories": [
|
||
|
"Languages",
|
||
|
"Other"
|
||
|
],
|
||
|
"activationEvents": [
|
||
|
"onCommand:addgitignore"
|
||
|
],
|
||
|
"main": "./out/src/extension",
|
||
|
"contributes": {
|
||
|
"commands": [
|
||
|
{
|
||
|
"command": "addgitignore",
|
||
|
"title": "Add gitignore"
|
||
|
}
|
||
|
],
|
||
|
"configuration": {
|
||
|
"type": "object",
|
||
|
"title": "gitignore extension configuration",
|
||
|
"properties": {
|
||
|
"gitignore.cacheExpirationInterval": {
|
||
|
"type": "integer",
|
||
|
"default": 3600,
|
||
|
"description": "Number of seconds the list of `.gitignore` files retrieved from github will be cached"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"languages": [
|
||
|
{
|
||
|
"id": "gitignore",
|
||
|
"aliases": [
|
||
|
"Gitignore"
|
||
|
],
|
||
|
"filenames": [
|
||
|
".gitignore"
|
||
|
],
|
||
|
"configuration": "./gitignore.configuration.json"
|
||
|
}
|
||
|
],
|
||
|
"grammars": [
|
||
|
{
|
||
|
"language": "gitignore",
|
||
|
"scopeName": "text.gitignore",
|
||
|
"path": "./syntaxes/gitignore.json"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"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": {
|
||
|
"typescript": "^1.8.5",
|
||
|
"vsce": "^1.2.3",
|
||
|
"vscode": "^0.11.8"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"github": "^0.2.4"
|
||
|
},
|
||
|
"__metadata": {
|
||
|
"id": "3e891cf9-53cb-49a3-8d01-8f0b1f0afb29",
|
||
|
"publisherId": "930310c4-ca8b-4e80-9d19-2b1507b2af61",
|
||
|
"publisherDisplayName": "CodeZombie"
|
||
|
}
|
||
|
}
|