-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.12 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.12 KB
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
{
"name": "vscode-task-contrib",
"displayName": "VSCode Task Contributor Sample",
"version": "4.8.0",
"private": true,
"categories": [],
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/SAP/task-explorer",
"directory": "packages/vscode_task_contrib"
},
"publisher": "SAPSE",
"main": "./dist/src/extension",
"scripts": {
"bundle": "webpack --mode production",
"ci": "npm-run-all clean compile bundle package",
"ci:artifacts_only": "npm-run-all clean compile bundle package",
"clean": "shx rm -rf dist coverage *.vsix",
"compile": "tsc",
"package": "node ./scripts/package-vsix.js"
},
"contributes": {
"taskDefinitions": [
{
"type": "npm-script",
"required": [
"label",
"taskType",
"packageJSONPath",
"script"
],
"properties": {
"label": {
"type": "string",
"description": "Label"
},
"taskType": {
"type": "string",
"description": "Task Type"
},
"packageJSONPath": {
"type": "string",
"description": "Path to package.json"
},
"script": {
"type": "string",
"description": "Select script:"
},
"arguments": {
"type": "string",
"description": "Add arguments"
}
}
}
]
},
"activationEvents": [
"*"
],
"dependencies": {
"@sap_oss/task_contrib_types": "^4.7.1",
"comment-json": "4.2.3",
"datauri": "4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/comment-json": "2.4.2",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.184",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/vscode": "1.75.0",
"@vscode/vsce": "2.22.0",
"proxyquire": "2.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"vscode": "^1.75.0"
},
"BASContributes": {
"tasksExplorer": [
{
"type": "npm-script",
"intent": "Miscellaneous"
}
]
}
}