-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.04 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
92
93
{
"name": "wdio-cucumberjs-json-reporter",
"version": "4.1.3",
"description": "A WDIO reporter that creates CucumberJS JSON files for WebdriverIO V5+",
"main": "./dist/reporter.js",
"types": "./dist/reporter.d.ts",
"scripts": {
"build": "npm run-script clean && tsc",
"clean": "rimraf coverage dist .tmp",
"compile": "npm run-script clean && tsc",
"test.lint": "eslint lib",
"test": "jest --coverage",
"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": "npm run compile -- --watch",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"update-package-json-dependencies": "npx ncu -u && npm i",
"eslint-fix-all": "npx eslint lib/**/**/*.ts lib/**/*.ts lib/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-cucumberjs-json-reporter.git"
},
"keywords": [
"cucumberjs",
"reporter",
"report",
"webdriverio",
"wdio",
"wdio-reporter"
],
"author": "Wim Selles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-cucumberjs-json-reporter/issues"
},
"homepage": "https://github.com/webdriverio-community/wdio-cucumberjs-json-reporter#readme",
"dependencies": {
"@cucumber/gherkin": "~21.0.0",
"@wdio/logger": "~7.7.0",
"@wdio/reporter": "~7.10.1",
"fs-extra": "~10.0.0"
},
"peerDependencies": {
"@wdio/cucumber-framework": "~7.12.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/long": "^4.0.1",
"@types/node": "^15.14.3",
"@tsconfig/node12": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@wdio/cucumber-framework": "~7.11.0",
"@wdio/sync": "^7.12.0",
"@wdio/types": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"coveralls": "^3.1.1",
"cucumber-messages": "^8.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tslint": "^3.1.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"npm-check-updates": "^11.8.5",
"release-it": "^14.11.5",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"typescript": "^4.4.2",
"webdriverio": "^7.12.0",
"yargs": "^17.1.1"
},
"husky": {
"hooks": {
"pre-push": "npm run test.lint && npm run test"
}
}
}