vscode/extensions/go/package.json
Aurélien Pupier 7a5bca9faf Add License field to package.jsons #68423 (#68771)
it should avoid to have "warning XXX: No license field" during yarn
build

Signed-off-by: Aurélien Pupier <apupier@redhat.com>
2019-06-06 11:44:50 +02:00

30 lines
686 B
JSON

{
"name": "go",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": { "vscode": "*" },
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-go grammars/go.cson ./syntaxes/go.tmLanguage.json"
},
"contributes": {
"languages": [{
"id": "go",
"extensions": [ ".go" ],
"aliases": [ "Go" ],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "go",
"scopeName": "source.go",
"path": "./syntaxes/go.tmLanguage.json"
}],
"configurationDefaults": {
"[go]": {
"editor.insertSpaces": false
}
}
}
}