diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-02-05 22:32:01 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-02-05 22:32:01 +0100 |
| commit | 87d6a1eea2a2a114e65b912fe6cbda5ba3d5fe5b (patch) | |
| tree | e6b112f63fcfc76956da888b350e91284ed75759 /package.json | |
| parent | 4549164147a331c583651f87d3d0490eb0a0397f (diff) | |
| parent | 72beb828484a686f2ae318a2054ce0435ff82b26 (diff) | |
Merge branch 'feature/rbdr-initial-development' into develop
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..44e125e --- /dev/null +++ b/package.json @@ -0,0 +1,39 @@ +{ + "name": "api-notation", + "displayName": "API Notation", + "description": "Syntax Highlighting for API notation", + "publisher": "rbdr", + "version": "0.2.1", + "engines": { + "vscode": "^1.30.0" + }, + "categories": [ + "Programming Languages" + ], + "repository": { + "type": "git", + "url": "https://gitlab.com/rbdr/api-notation.vscode.git" + }, + "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" + } + ] + } +} |