-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "zuulplugin",
"displayName": "Zuul Job Browser",
"publisher": "alexander-scott",
"repository": "https://github.com/Alexander-Scott/zuulplugin",
"description": "Navigate through Zuul Configuration in VSCode more easily with this plugin.",
"version": "0.4.0",
"license": "MIT",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:yaml"
],
"icon": "images/zuul_icon.png",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "zuulplugin.rebuild-hierarchy",
"title": "Zuul Plugin Rebuild Job Hierarchy"
},
{
"command": "zuulplugin.clear-cache",
"title": "Zuul Plugin Clear Job Hierarchy Cache"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"lint-fix": "eslint src --ext ts --fix",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint && npm run copy-test-files",
"copy-test-files": "rm -rf ./out/test/suite/test_files/ && cp -rv ./src/test/suite/test_files/ ./out/test/suite/test_files/",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"glob": "^11.0.0",
"mocha": "^11.0.1",
"typescript": "^5.7.2",
"vscode-test": "^1.6.1"
},
"dependencies": {
"class-transformer": "^0.5.1",
"js-yaml": "^4.1.0",
"lru-cache": "^11.0.2",
"reflect-metadata": "^0.2.2",
"vscode-cache": "^0.3.0"
}
}