forked from Qytera-Gmbh/cypress-xray-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.28 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
{
"name": "cypress-xray-plugin",
"version": "5.2.1",
"description": "A Cypress plugin for uploading test results to Xray (test management for Jira)",
"types": "index.d.ts",
"author": "csvtuda",
"repository": {
"type": "git",
"url": "https://github.com/Qytera-Gmbh/cypress-xray-plugin"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Qytera-Gmbh/cypress-xray-plugin/issues"
},
"homepage": "https://qytera-gmbh.github.io/projects/cypress-xray-plugin",
"keywords": [
"cypress",
"xray",
"upload",
"screenshot",
"video",
"cucumber"
],
"files": [
"src",
"*.js",
"*.ts"
],
"exports": {
".": "./index.js",
"./register": "./src/register.js"
},
"directories": {
"lib": "src"
},
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=html --exclude=**/*.spec.ts --exclude=test/ mocha",
"build": "tsc --project tsconfigBuild.json && shx cp package.json README.md LICENSE.md CHANGELOG.md dist/",
"eslint": "eslint src/**/*.ts test/**/*.ts index.ts index.spec.ts"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@cucumber/gherkin": "^27.0.0",
"@cucumber/messages": "^23.0.0",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"decompress": "^4.2.1",
"form-data": "^4.0.0",
"semver": "^7.5.4"
},
"peerDependencies": {
"cypress": ">=10.0.0 < 14"
},
"optionalDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^19.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/decompress": "^4.2.7",
"@types/mocha": "^10.0.6",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.9.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.52.0",
"eslint-plugin-tsdoc": "^0.2.17",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}