-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.32 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": "jcasc-plugin",
"displayName": "JCasC-Plugin",
"description": "This extension is used to integrate a live jenkins instance configuration with your editor. It can be used to edit and validate YAML files.",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/jenkinsci/jcasc-vscode-extension"
},
"icon": "images/jcasc_icon.png",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.jcasc"
],
"license": "MIT",
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Jenkins: Configuration as Code",
"properties": {
"jcasc.jenkinsURL": {
"type": "string",
"description": "URL for the configuration-as-code Schema for the Jenkins instance"
},
"jcasc.userName": {
"type": "string",
"description": "Username for authenticating the user"
},
"jcasc.userToken": {
"type": "string",
"description": "Token for authenticating the user"
}
}
},
"commands": [
{
"command": "extension.jcasc",
"title": "Jenkins: Fetch configuration-as-code schema"
}
]
},
"scripts": {
"vscode:prepublish": "yarn clean-out && yarn compile",
"clean-out": "rimraf ./out",
"compile": "webpack --mode production",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"test-watch": "yarn test-compile -- -watch",
"test-compile": "tsc -p ./",
"pretest": "yarn test-compile",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^12.12.24",
"@types/node-fetch": "^2.5.4",
"@types/vscode": "^1.38.0",
"glob": "^7.1.4",
"husky": "^4.0.7",
"lint-staged": "^10.0.0-beta.15",
"mocha": "^6.1.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-loader": "^6.2.1",
"tslint": "^5.12.1",
"typescript": "^3.7.4",
"vsce": "^1.71.0",
"vscode-test": "^1.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"extensionDependencies": [
"redhat.vscode-yaml"
],
"publisher": "jcasc-developers"
}