UNPKG

dtl-js

Version:

Data Transformation Language - JSON templates and data transformation

59 lines (58 loc) 1.89 kB
{ "name": "dtl-syntax-highlighting", "displayName": "DTL - Data Transformation Language - https://getdtl.org/", "description": "Language Pack for DTL (Data Transformation Language) in VSCode", "version": "5.3.0", "publisher": "jk0ne", "repository": { "type": "git", "url": "https://gitlab.com/jk0ne/DTL", "directory": "tools/editors/DTL.tmbundle" }, "license": "LGPL-2.1-or-later", "engines": { "vscode": "^1.0.0" }, "icon": "DTL-icon-small.png", "categories": ["Programming Languages"], "contributes": { "languages": [ { "id": "DTL", "extensions": [".dtl", ".tx", ".transform"], "configuration": "./language-configuration.json" } ], "grammars": [ { "language": "DTL", "scopeName": "source.dtl", "path": "./Syntaxes/DTL.tmLanguage.json" }, { "language": "json", "scopeName": "source.dtl", "path": "./Syntaxes/DTL.tmLanguage.json", "injectTo": ["string.quoted.double.json"] }, { "language": "yaml", "scopeName": "source.dtl", "path": "./Syntaxes/DTL.tmLanguage.json", "injectTo": ["string.quoted.single.yaml", "string.quoted.double.yaml"] }, { "language": "javascript", "scopeName": "source.dtl", "path": "./Syntaxes/DTL.tmLanguage.json", "injectTo": ["string.quoted.single.js", "string.quoted.double.js"] } ], "snippets": [ { "language": "DTL", "path": "./Snippets/dtl-snippets.json" } ] } }