mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 01:12:58 +00:00
7a5bca9faf
it should avoid to have "warning XXX: No license field" during yarn build Signed-off-by: Aurélien Pupier <apupier@redhat.com>
34 lines
No EOL
904 B
JSON
34 lines
No EOL
904 B
JSON
{
|
|
"name": "coffeescript",
|
|
"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-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "coffeescript",
|
|
"extensions": [ ".coffee", ".cson", ".iced" ],
|
|
"aliases": [ "CoffeeScript", "coffeescript", "coffee" ],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "coffeescript",
|
|
"scopeName": "source.coffee",
|
|
"path": "./syntaxes/coffeescript.tmLanguage.json"
|
|
}],
|
|
"breakpoints": [
|
|
{
|
|
"language": "coffeescript"
|
|
}
|
|
],
|
|
"snippets": [{
|
|
"language": "coffeescript",
|
|
"path": "./snippets/coffeescript.snippets.json"
|
|
}]
|
|
}
|
|
} |