@allurereport/plugin-jira 3.3.0 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +16 -27
package/package.json
CHANGED
|
@@ -1,55 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allurereport/plugin-jira",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "Allure Plugin to Report results to Jira",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
7
|
-
"
|
|
8
|
-
"report",
|
|
7
|
+
"jira",
|
|
9
8
|
"plugin",
|
|
10
|
-
"
|
|
9
|
+
"report",
|
|
10
|
+
"testing"
|
|
11
11
|
],
|
|
12
|
-
"repository": "https://github.com/allure-framework/allure3",
|
|
13
12
|
"license": "Apache-2.0",
|
|
14
13
|
"author": "Qameta Software",
|
|
14
|
+
"repository": "https://github.com/allure-framework/allure3",
|
|
15
|
+
"files": [
|
|
16
|
+
"./dist"
|
|
17
|
+
],
|
|
15
18
|
"type": "module",
|
|
16
|
-
"exports": {
|
|
17
|
-
".": "./dist/index.js"
|
|
18
|
-
},
|
|
19
19
|
"main": "./dist/index.js",
|
|
20
20
|
"module": "./dist/index.js",
|
|
21
21
|
"types": "./dist/index.d.ts",
|
|
22
|
-
"
|
|
23
|
-
"./dist"
|
|
24
|
-
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./dist/index.js"
|
|
24
|
+
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "run clean && tsc --project ./tsconfig.json",
|
|
27
27
|
"clean": "rimraf ./dist",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
28
|
+
"test": "rimraf ./out && vitest run",
|
|
29
|
+
"lint": "oxlint --import-plugin src test features stories",
|
|
30
|
+
"lint:fix": "oxlint --import-plugin --fix src test features stories"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@allurereport/core-api": "3.
|
|
34
|
-
"@allurereport/plugin-api": "3.
|
|
33
|
+
"@allurereport/core-api": "3.4.0",
|
|
34
|
+
"@allurereport/plugin-api": "3.4.0",
|
|
35
35
|
"axios": "^1.13.5"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@faker-js/faker": "^9.8.0",
|
|
39
|
-
"@stylistic/eslint-plugin": "^2.6.1",
|
|
40
|
-
"@types/eslint": "^8.56.11",
|
|
41
39
|
"@types/node": "^20.17.9",
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
43
|
-
"@typescript-eslint/parser": "^8.0.0",
|
|
44
40
|
"@vitest/runner": "^2.1.9",
|
|
45
41
|
"allure-vitest": "^3.3.3",
|
|
46
|
-
"eslint": "^8.57.0",
|
|
47
|
-
"eslint-config-prettier": "^9.1.0",
|
|
48
|
-
"eslint-plugin-import": "^2.29.1",
|
|
49
|
-
"eslint-plugin-jsdoc": "^50.0.0",
|
|
50
|
-
"eslint-plugin-n": "^17.10.1",
|
|
51
|
-
"eslint-plugin-no-null": "^1.0.2",
|
|
52
|
-
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
53
42
|
"rimraf": "^6.0.1",
|
|
54
43
|
"typescript": "^5.6.3",
|
|
55
44
|
"vitest": "^2.1.9"
|