-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "robotframework",
"displayName": "robotframework",
"description": "Robot Framework support",
"version": "0.1.2",
"publisher": "vivainio",
"icon": "images/robotframework.png",
"license": "MIT",
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Languages"
],
"activationEvents": [
"onCommand:extension.searchRobotKeyword"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.searchRobotKeyword",
"title": "Robot: Search Keyword"
}
],
"languages": [
{
"id": "robot",
"aliases": [
"robotframework"
],
"extensions": [
".robot"
],
"configuration": "./robotframework.configuration.json"
}
],
"grammars": [
{
"language": "robot",
"scopeName": "text.robot",
"path": "./syntaxes/robot.tmLanguage"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.7.5",
"vscode": "^0.11.0"
},
"dependencies": {
"sax": "^1.2.1",
"xml2js": "^0.4.16"
}
}