aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-02-05 22:26:23 +0100
committerBen Beltran <ben@nsovocal.com>2019-02-05 22:26:23 +0100
commit50266a18d9b653651a60dee9041b71fd35b0c1e4 (patch)
tree94f7e3e81928a9c544e95d0fd8d0efa806f0b849 /package.json
parent891e104e182102873298f898cf3edf0647d2e389 (diff)
0.1.0v0.1.0
Diffstat (limited to 'package.json')
-rw-r--r--package.json35
1 files changed, 22 insertions, 13 deletions
diff --git a/package.json b/package.json
index 1f0bc38..6796641 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api-notation",
"displayName": "API Notation",
"description": "Syntax Highlighting for API notation",
- "version": "0.0.1",
+ "version": "0.1.0",
"engines": {
"vscode": "^1.30.0"
},
@@ -10,16 +10,25 @@
"Programming Languages"
],
"contributes": {
- "languages": [{
- "id": "api-notation",
- "aliases": ["API Notation", "api-notation"],
- "extensions": [".api"],
- "configuration": "./language-configuration.json"
- }],
- "grammars": [{
- "language": "api-notation",
- "scopeName": "source.api-notation",
- "path": "./syntaxes/api-notation.tmLanguage"
- }]
+ "languages": [
+ {
+ "id": "api-notation",
+ "aliases": [
+ "API Notation",
+ "api-notation"
+ ],
+ "extensions": [
+ ".api"
+ ],
+ "configuration": "./language-configuration.json"
+ }
+ ],
+ "grammars": [
+ {
+ "language": "api-notation",
+ "scopeName": "source.api-notation",
+ "path": "./syntaxes/api-notation.tmLanguage"
+ }
+ ]
}
-} \ No newline at end of file
+}