aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-02-05 22:35:04 +0100
committerBen Beltran <ben@nsovocal.com>2019-02-05 22:35:04 +0100
commit55ab0586626b0a833e7b3801164699e4b3a640c2 (patch)
tree7ebd3f76327b8d9f5e4840592ce3f37e9fe63827 /package.json
parent4549164147a331c583651f87d3d0490eb0a0397f (diff)
parentb1cf6d7ccd532b35c845ba93170996f700ce59a7 (diff)
Merge branch 'release/1.0.0'1.0.0
Diffstat (limited to 'package.json')
-rw-r--r--package.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..2319e61
--- /dev/null
+++ b/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "api-notation",
+ "displayName": "API Notation",
+ "description": "Syntax Highlighting for API notation",
+ "publisher": "rbdr",
+ "version": "1.0.0",
+ "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"
+ }
+ ]
+ }
+}