This repository has been archived by the owner on Aug 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 2.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "impex-support",
"displayName": "ImpEx Support",
"description": "Languages support for the SAP Hybris import/export language ImpEx. (unofficial)",
"keywords": [
"SAP",
"hybris",
"impex",
"eCommerce"
],
"version": "0.2.5",
"publisher": "simplyRoba",
"repository": {
"type": "git",
"url": "https://github.com/simplyRoba/ImpExSupport"
},
"bugs": {
"url": "https://github.com/simplyRoba/ImpExSupport/issues"
},
"homepage": "https://github.com/simplyRoba/ImpExSupport/blob/master/README.md",
"license": "MIT",
"qna": "false",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#444444",
"theme": "dark"
},
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:impex"
],
"main": "./out/src/Extension",
"contributes": {
"languages": [
{
"id": "impex",
"aliases": [
"ImpEx",
"impex",
"Impex"
],
"extensions": [
".impex"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "impex",
"scopeName": "text.tabular.impex",
"path": "./syntaxes/impex.tmLanguage.json"
}
],
"snippets": [
{
"language": "impex",
"path": "./snippets/snippets.json"
}
],
"configuration": {
"type": "object",
"title": "ImpEx configuration",
"properties": {
"impex.editor.columnHighlighting.enabled": {
"type": "boolean",
"default": true,
"description": "Enables/Disables the column highlighting in impex files",
"scope": "window"
}
}
}
},
"scripts": {
"vscode:prepublish": "gulp build",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "gulp test"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"@types/node": "12.6.7",
"chai": "4.1.2",
"decache": "4.5.1",
"del": "5.0.0",
"gulp": "4.0.2",
"gulp-json-editor": "2.5.1",
"gulp-sourcemaps": "2.6.5",
"gulp-tslint": "8.1.4",
"gulp-typescript": "5.0.1",
"gulp-util": "3.0.8",
"istanbul": "0.4.5",
"mocha": "6.1.4",
"remap-istanbul": "0.13.0",
"pump": "3.0.0",
"ts-mockito": "2.3.1",
"tslint": "5.10.0",
"typemoq": "2.1.0",
"typescript": "2.8.3",
"vscode": "1.1.35"
}
}