-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
91 lines (91 loc) · 2.82 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "wdio-cucumberjs-json-reporter",
"version": "6.0.1",
"description": "A WDIO reporter that creates CucumberJS JSON files for WebdriverIO V5+",
"author": "Wim Selles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-cucumberjs-json-reporter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-cucumberjs-json-reporter.git"
},
"keywords": [
"cucumberjs",
"reporter",
"report",
"webdriverio",
"wdio",
"wdio-reporter"
],
"homepage": "https://github.com/webdriverio-community/wdio-cucumberjs-json-reporter#readme",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"exports": {
".": [
{
"import": "./dist/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
},
"./dist/cjs/index.js"
]
},
"scripts": {
"build": "run-s clean compile",
"clean": "rimraf coverage dist .tmp",
"compile": "tsc --build tsconfig.json",
"test": "run-s test:*",
"test:lint": "eslint src",
"test:unit": "vitest -c ./vitest.conf.ts --run",
"precompile": "npm run clean",
"prerelease": "npm run compile",
"prepublish": "npm run compile",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"watch": "run-s compile -- --watch",
"update-package-json-dependencies": "npx ncu -u && npm i",
"eslint-fix-all": "npx eslint src/**/**/*.ts src/**/*.ts src/*.ts --fix"
},
"dependencies": {
"@cucumber/gherkin": "^30.0.0",
"@wdio/logger": "^9.0.4",
"@wdio/reporter": "^9.0.0",
"fs-extra": "^11.1.1",
"strip-ansi": "^7.1.0"
},
"peerDependencies": {
"@wdio/cucumber-framework": "^9.0.0",
"@wdio/globals": "^9.0.0",
"@wdio/types": "^9.0.0",
"webdriverio": "^9.0.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^1.2.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.6",
"npm-run-all2": "^6.1.2",
"release-it": "^17.0.0",
"rimraf": "^6.0.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2",
"vitest": "^1.2.1"
}
}