-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 4.44 KB
/
package.json
File metadata and controls
162 lines (162 loc) · 4.44 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
153
154
155
156
157
158
159
160
161
162
{
"name": "aha-develop.testrail",
"description": "TestRail",
"version": "1.5.0",
"author": "Aha! (support@aha.io)",
"repository": {
"type": "git",
"url": "https://github.com/aha-develop/testrail-aha"
},
"license": "MIT",
"ahaExtension": {
"contributes": {
"views": {
"tests": {
"title": "Tests",
"entryPoint": "src/views/tests.tsx",
"host": "tab",
"recordTypes": [
"Feature",
"Requirement",
"Epic",
"Iteration"
]
},
"syncing": {
"title": "TestRail connection",
"entryPoint": "src/views/syncing.tsx",
"host": "page",
"location": {
"menu": "Work"
}
}
},
"events": {
"createTestCase": {
"title": "Create Test Case",
"entryPoint": "src/events/createTestCase.ts",
"handles": [
"aha-develop.testrail.createTestCase"
]
},
"syncStatuses": {
"title": "Sync Statuses",
"entryPoint": "src/events/syncStatuses.ts",
"handles": [
"aha-develop.testrail.syncStatuses"
]
},
"syncProjects": {
"title": "Sync Projects",
"entryPoint": "src/events/syncProjects.ts",
"handles": [
"aha-develop.testrail.syncProjects"
]
},
"syncSuites": {
"title": "Sync Suites",
"entryPoint": "src/events/syncSuites.ts",
"handles": [
"aha-develop.testrail.syncSuites"
]
},
"syncSections": {
"title": "Sync Sections",
"entryPoint": "src/events/syncSections.ts",
"handles": [
"aha-develop.testrail.syncSections"
]
},
"syncCases": {
"title": "Sync Test Cases",
"entryPoint": "src/events/syncCases.ts",
"handles": [
"aha-develop.testrail.syncCases"
]
},
"syncRuns": {
"title": "Sync Test Runs",
"entryPoint": "src/events/syncRuns.ts",
"handles": [
"aha-develop.testrail.syncRuns"
]
},
"syncPlans": {
"title": "Sync Test Plans",
"entryPoint": "src/events/syncPlans.ts",
"handles": [
"aha-develop.testrail.syncPlans"
]
},
"syncRunsForPlan": {
"title": "Sync Test Runs for Test Plan",
"entryPoint": "src/events/syncRunsForPlan.ts",
"handles": [
"aha-develop.testrail.syncRunsForPlan"
]
},
"syncTests": {
"title": "Sync Tests",
"entryPoint": "src/events/syncTests.ts",
"handles": [
"aha-develop.testrail.syncTests"
]
},
"syncResults": {
"title": "Sync Test Results",
"entryPoint": "src/events/syncResults.ts",
"handles": [
"aha-develop.testrail.syncResults"
]
}
},
"settings": {
"domain": {
"title": "TestRail Subdomain",
"type": "string",
"description": "The subdomain of your TestRail instance, e.g. enter 'myteam' if your TestRail instance is accessible at https://myteam.testrail.io/",
"scope": [
"account"
]
},
"syncDelay": {
"title": "TestRail API Automatic Sync Delay",
"type": "number",
"description": "How long (in seconds) before records will be automatically re-synced. If negative, will never auto-sync.",
"scope": [
"account"
],
"default": 3600
},
"username": {
"title": "TestRail API Username",
"type": "string",
"description": "The username for your TestRail API authentication",
"scope": [
"account"
]
},
"token": {
"title": "TestRail API Token",
"type": "secret",
"description": "The token for your TestRail API authentication",
"scope": [
"account"
]
}
}
}
},
"dependencies": {
"base64-js": "^1.5.1",
"moment": "^2.29.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/prop-types": "^15.7.14",
"@types/react": "^16.8.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
}
}