-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
132 lines (132 loc) · 2.79 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "lang-4d-support",
"displayName": "lang-4d-support",
"description": "VS Code extension for supporting 4D language",
"version": "0.0.8",
"publisher": "sertiayoub",
"license": "MIT",
"engines": {
"vscode": "^1.36.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ayoubserti/lang-4d-support.git"
},
"categories": [
"Programming Languages",
"Linters"
],
"icon": "icon.png",
"keywords": [
"4d",
"4dm"
],
"activationEvents": [
"onLanguage:4d",
"onCommand:extension.create_4d_project",
"onCommand:extension.create_project_method",
"onCommand:extension.create_database_method"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.create_4d_project",
"title": "New 4D Project",
"category": "4D"
},
{
"command": "extension.create_project_method",
"title": "New Project Method",
"category": "4D"
},
{
"command": "extension.create_database_method",
"title": "Database Method",
"category": "4D"
},
{
"command": "extension.create_table",
"title": "New Table",
"category": "4D"
},
{
"command": "extension.create_field",
"title": "Add Field To Table",
"category": "4D"
}
],
"languages": [
{
"id": "4d",
"aliases": [
"4D",
"4d"
],
"extensions": [
".4dm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "4d",
"scopeName": "source.4dm",
"path": "./dist/syntaxes/4d.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.4d": "sql"
}
}
],
"configuration": [
{
"title": "4D",
"properties": {
"4d.programPath": {
"type": "string",
"default": "",
"description": " Path of 4D executable"
},
"4d.builderPath": {
"type": "string",
"default": "",
"description": "path of 4D builder"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production && npm run copyfile",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./dist/test/runTest.js",
"copyfile": "node ./tools/postbuild.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.36.0",
"electron-rebuild": "^1.8.5",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"ts-loader": "^6.2.0",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode-test": "^1.0.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"@types/uuid": "^3.4.6",
"fast-xml-parser": "^3.12.20",
"uuid": "^3.3.3",
"vscode-textmate": "^4.1.1"
}
}