vscode/extensions/r/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

26 lines
630 B
JSON

{
"name": "r",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": { "vscode": "*" },
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js Ikuyadeu/vscode-R syntax/r.json ./syntaxes/r.tmLanguage.json"
},
"contributes": {
"languages": [{
"id": "r",
"extensions": [ ".r", ".rhistory", ".rprofile", ".rt" ],
"aliases": [ "R", "r" ],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "r",
"scopeName": "source.r",
"path": "./syntaxes/r.tmLanguage.json"
}]
}
}