-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
{
"name": "vscode-kitchen",
"displayName": "Test Kitchen",
"description": "Test Kitchen support for Visual Studio Code",
"version": "0.5.0",
"publisher": "jirkafajfr",
"preview": true,
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Languages",
"Other"
],
"icon": "assets/icon.png",
"license": "MIT",
"bugs": { "url": "https://github.com/jirkafajfr/vscode-kitchen/issues" },
"homepage": "https://github.com/jirkafajfr/vscode-kitchen",
"repository": {
"type": "git",
"url": "https://github.com/jirkafajfr/vscode-kitchen.git"
},
"activationEvents": [
"onCommand:kitchen.converge",
"onCommand:kitchen.create",
"onCommand:kitchen.destroy",
"onCommand:kitchen.list",
"onCommand:kitchen.test",
"onCommand:kitchen.verify"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "kitchen.converge",
"title": "Converge",
"category": "Kitchen"
},
{
"command": "kitchen.create",
"title": "Create",
"category": "Kitchen"
},
{
"command": "kitchen.destroy",
"title": "Destroy",
"category": "Kitchen"
},
{
"command": "kitchen.list",
"title": "List",
"category": "Kitchen"
},
{
"command": "kitchen.test",
"title": "Test",
"category": "Kitchen"
},
{
"command": "kitchen.verify",
"title": "Verify",
"category": "Kitchen"
}
]
},
"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",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"inversify": "^2.0.0-beta.6",
"inversify-dts": "^1.0.1",
"reflect-metadata": "^0.1.3",
"tree-kill": "^1.1.0"
},
"devDependencies": {
"typescript": "^1.8.10",
"vscode": "^0.11.13",
"tslint": "^3.10.2",
"mock-spawn": "^0.2.6",
"typemoq": "^0.1.0"
}
}