-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (152 loc) · 4.53 KB
/
Copy pathpackage.json
File metadata and controls
152 lines (152 loc) · 4.53 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "commit-test",
"displayName": "commit-test",
"description": "Jenkins-based commit-test",
"version": "0.0.8",
"publisher": "zigman",
"homepage": "http://172.26.5.129/jy.hsu/vscode-commit-test/blob/master/README.md",
"icon": "images/commit-test.png",
"repository": {
"type": "git",
"url": "https://github.com/zigman-dev/vscode-commit-test.git"
},
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:commit-test.verifyEnvironment",
"onCommand:commit-test.sanityTest"
],
"main": "./out/extension.js",
"contributes": {
"_FIXME": "Add descriptions",
"commands": [
{
"command": "commit-test.verifyEnvironment",
"title": "Verify Environment",
"category": "Commit-Test"
},
{
"command": "commit-test.sanityTest",
"title": "Submit Sanity-Test for Cooper",
"category": "Commit-Test"
}
],
"configuration": {
"title": "Commit-Test",
"properties": {
"commit-test.jenkins.account.user": {
"type": "string",
"scope": "resource",
"description": "Valid account which can login to the Jenkins service (usually your NT account), mandatory"
},
"commit-test.jenkins.account.password": {
"type": "string",
"scope": "resource",
"description": "Password for the valid account"
},
"commit-test.jenkins.account.mail": {
"type": "string",
"scope": "resource",
"description": "Mail address to send notification to, optional"
},
"commit-test.jenkins.hostAddress": {
"type": "string",
"format": "uri",
"scope": "resource",
"default": "http://172.26.5.130:8080",
"description": "Jenkins host to submit test to"
},
"commit-test.workspace.modem": {
"type": "string",
"scope": "resource",
"default": "modem",
"description": "Folder name of modem in the multi-root workspace"
},
"commit-test.workspace.ap": {
"type": "string",
"scope": "resource",
"default": "cooper_sdk",
"description": "Folder name of AP in the multi-root workspace"
},
"commit-test.sanity.jenkins.jobName": {
"type": "string",
"scope": "resource",
"default": "SDLC/cooper/sanity",
"description": "Jenkins job to submit sanity test to"
},
"commit-test.sanity.parameters.modem.revision": {
"type": "string",
"scope": "resource",
"default": "master",
"description": "Revision to checkout while building modem"
},
"commit-test.sanity.parameters.modem.config": {
"type": "string",
"scope": "resource",
"default": "",
"markdownDescription": "Extra variables to use while configuring modem. Do not define `CPPFLAGS` variable here, please use `#commit-test.jenkins.sanity.modem_cppflags#` for macro defining."
},
"commit-test.sanity.parameters.modem.cppflags": {
"type": "string",
"scope": "resource",
"default": "",
"description": "Extra CPPFLAGS to use while building modem."
},
"commit-test.sanity.parameters.ap.revision": {
"type": "string",
"scope": "resource",
"default": "master",
"description": "Revision to checkout while building AP"
},
"commit-test.sanity.parameters.ap.config": {
"type": "string",
"scope": "resource",
"markdownDescription": "Extra variables to use while building AP. Do not define `CPPFLAGS` variable here, please use `#commit-test.jenkins.sanity.ap_cppflags#` for macro defining."
},
"commit-test.sanity.parameters.ap.cppflags": {
"type": "string",
"scope": "resource",
"default": "",
"description": "Extra CPPFLAGS to use while building AP."
},
"commit-test.sanity.parameters.testcase": {
"type": "string",
"enum": ["ping", "ping_after_idle", "Eclipse_Leshan", "ping_100_times", "long_idle"],
"default": "ping",
"description": "Test case to perform"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.11.7",
"@types/vscode": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"dependencies": {
"form-data": "^3.0.0",
"jenkins": "^0.28.1",
"simple-git": "^2.35.2",
"svn-interface": "^0.5.0"
}
}