-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.06 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
{
"name": "xray-cucumber-plugin",
"version": "2.0.2",
"description": "Automate XRAY integration for Cucumber Test Cases in your projects with ease. Seamlessly interact with XRAY and Jira APIs to streamline test management.",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"prepare": "npm run build:esm && npm run build:cjs && node scripts/copy-package.mjs",
"build:esm": "tsc --outDir ./dist/esm --module ESNext",
"build:cjs": "tsc --outDir ./dist/cjs --module CommonJS",
"test": "vitest --config vitest.config.ts --watch",
"test:run": "vitest --config vitest.config.ts --run",
"lint": "eslint '**/*.ts' --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tamil777selvan/xray-cucumber-plugin.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tamil777selvan/xray-cucumber-plugin/issues"
},
"homepage": "https://github.com/tamil777selvan/xray-cucumber-plugin#readme",
"dependencies": {
"@cucumber/gherkin": "^30.0.0",
"@cucumber/messages": "^27.0.0",
"@cucumber/tag-expressions": "^6.1.1",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.10.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^8.57.1",
"pre-commit": "^1.2.2",
"ts-node": "^10.9.2",
"vitest": "^2.1.4"
},
"keywords": [
"xray",
"cucumber",
"jira",
"xray api",
"jira api"
],
"files": [
"dist/**/*"
],
"pre-commit": {
"run": "lint",
"silent": true
}
}