-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.25 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
{
"name": "dokd-vscode-preview",
"displayName": "DevOps Kit for DSC",
"version": "0.2.1",
"publisher": "bewhite",
"description": "Adds convenience features for IT Pros using DevOps Kit for DSC.",
"engines": {
"vscode": "^1.16.0"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/BernieWhite/DevOpsKitDsc-vscode/blob/master/README.md",
"categories": [
"Other"
],
"keywords": [
"PowerShell"
],
"galleryBanner": {
"color": "#0072c6",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/BernieWhite/DevOpsKitDsc-vscode.git"
},
"bugs": {
"url": "https://github.com/BernieWhite/DevOpsKitDsc-vscode/issues"
},
"private": true,
"preview": true,
"activationEvents": [
"onCommand:workbench.action.tasks.runTask",
"onCommand:dokd.initWorkspace",
"onCommand:dokd.restoreModules",
"onCommand:dokd.buildAll",
"onCommand:dokd.newCollection"
],
"contributes": {
"commands": [
{
"command": "dokd.initWorkspace",
"category": "DOK Dsc",
"title": "Initialize the workspace"
},
{
"command": "dokd.restoreModules",
"category": "DOK Dsc",
"title": "Restore any missing dependency modules"
},
{
"command": "dokd.buildAll",
"category": "DOK Dsc",
"title": "Build all workspace collections"
},
{
"command": "dokd.newCollection",
"category": "DOK Dsc",
"title": "New collection"
}
],
"taskDefinitions": [
{
"type": "dokd",
"required": [
"collectionName"
],
"properties": {
"collectionName": {
"type": "string",
"description": "The name of the collection to build."
},
"path": {
"type": "string",
"description": "The path to the workspace."
}
}
}
],
"jsonValidation": [
{
"fileMatch": ".dokd/settings.json",
"url": "./schema/workspace-0.1.0.schema.json"
}
]
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"extensionDependencies": [
"vscode.powershell"
],
"devDependencies": {
"typescript": "^2.3.x",
"vscode": "^1.1.5",
"mocha": "^2.3.3",
"@types/node": "^6.0.40"
}
}