forked from vitalets/playwright-bdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "playwright-bdd",
"description": "BDD Testing with Playwright runner and CucumberJS",
"version": "6.4.0",
"type": "commonjs",
"bin": {
"bddgen": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./decorators": "./dist/decorators.js",
"./reporter/cucumber": "./dist/reporter/cucumber/index.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"index": [
"./dist/index.d.ts"
],
"decorators": [
"./dist/decorators.d.ts"
],
"cucumber-reporter": [
"./dist/reporter/cucumber/index.d.ts"
]
}
},
"engines": {
"node": ">=16"
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"prepare": "git config core.hooksPath .hooks",
"lint": "eslint .",
"tsc": "tsc",
"knip": "knip -c knip.config.ts",
"prettier": "prettier --check --ignore-unknown .",
"prettier:w": "prettier --write --ignore-unknown .",
"test": "node test/setup.mjs && node --test test/**/test.mjs",
"test:smoke": "node test/setup.mjs && node --test $(node scripts/smoke-tests.mjs)",
"only": "node test/setup.mjs && node --test",
"only:d": "node test/setup.mjs && TEST_DEBUG=1 node --test",
"build": "bash scripts/build.sh",
"examples": "node scripts/examples.mjs",
"help": "ts-node src/cli -h",
"env": "ts-node src/cli env",
"docs": "docsify serve ./docs",
"docs:validate": "ts-node scripts/validate-docs.ts",
"pw": "npm i --no-save @playwright/test@$PW @playwright/experimental-ct-react@$PW",
"release": "bash scripts/release.sh"
},
"dependencies": {
"cli-table3": "0.6.4",
"commander": "^11.1.0",
"fast-glob": "^3.3.2",
"supports-color": "8.1.1"
},
"devDependencies": {
"@cucumber/compatibility-kit": "15.0.0",
"@cucumber/cucumber": "10.3.1",
"@cucumber/pretty-formatter": "1.0.1",
"@eslint/js": "9.2.0",
"@playwright/experimental-ct-react": "1.37.1",
"@playwright/test": "1.37.1",
"@types/micromatch": "4.0.7",
"@types/node": "^18.15.0",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/supports-color": "8.1.3",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-plugin-playwright": "1.6.0",
"globals": "15.1.0",
"knip": "5.13.0",
"lint-staged": "15.2.2",
"lodash.get": "4.4.2",
"marked": "12.0.2",
"micromatch": "4.0.5",
"np": "10.0.5",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"prettier-plugin-gherkin": "2.2.1",
"publint": "0.2.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"slugify": "1.6.6",
"ts-node": "^10.9.2",
"typescript": "5.4.5",
"typescript-eslint": "7.8.0",
"xml2js": "0.6.2"
},
"peerDependencies": {
"@cucumber/cucumber": ">=9",
"@playwright/test": ">=1.34"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/playwright-bdd.git"
},
"keywords": [
"playwright",
"cucumber",
"gherkin",
"bdd",
"testing",
"e2e"
],
"funding": "https://github.com/sponsors/vitalets",
"license": "MIT"
}