forked from Klaveness-Digital/cypress-cucumber-preprocessor
-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
135 lines (135 loc) · 4.4 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@badeball/cypress-cucumber-preprocessor",
"version": "21.0.2",
"author": "Jonas Amundsen",
"license": "MIT",
"homepage": "https://github.com/badeball/cypress-cucumber-preprocessor",
"repository": {
"type": "git",
"url": "https://github.com/badeball/cypress-cucumber-preprocessor.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/badeball"
}
],
"keywords": [
"cypress",
"cypress-plugin",
"cypress-preprocessor"
],
"bin": {
"cucumber-html-formatter": "dist/bin/cucumber-html-formatter.js",
"cucumber-json-formatter": "dist/bin/cucumber-json-formatter.js",
"cucumber-merge-messages": "dist/bin/cucumber-merge-messages.js"
},
"main": "dist/entrypoint-node.js",
"types": "dist/entrypoint-node.d.ts",
"browser": "dist/entrypoint-browser.js",
"exports": {
".": {
"node": "./dist/entrypoint-node.js",
"types": "./dist/entrypoint-node.d.ts",
"browser": "./dist/entrypoint-browser.js"
},
"./*": "./dist/subpath-entrypoints/*.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"patches/patch.js"
],
"scripts": {
"postinstall": "node patches/patch.js",
"clear-dist": "rm -rf dist",
"clean-install": "rm -rf node_modules && npm install",
"genversion": "genversion --semi --double --es6 lib/version.ts",
"build": "npm run genversion && tsc",
"watch": "npm run genversion && tsc --watch",
"fmt": "prettier --ignore-path .gitignore --write '**/*.ts'",
"test": "npm run test:fmt && npm run test:lint && npm run test:types && npm run test:unit && npm run test:integration",
"test:fmt": "prettier --ignore-path .gitignore --check '**/*.ts'",
"test:lint": "eslint --max-warnings=0 .",
"test:types": "tsc -p test-d",
"test:unit": "mocha",
"test:run-all-specs": "mocha --timeout 0 test/run-all-specs.ts",
"test:integration": "cucumber-js",
"test:actions:examples": "xvfb-run bash -c 'act -W \".github/workflows/examples-branch.yml\" --use-gitignore=false --artifact-server-path=tmp/artifacts --env DISPLAY=$DISPLAY'",
"prepublishOnly": "npm run clean-install && npm run clear-dist && npm run build && npm run test"
},
"dependencies": {
"@cucumber/ci-environment": "^10.0.1",
"@cucumber/cucumber": "^11.0.0",
"@cucumber/cucumber-expressions": "^18.0.0",
"@cucumber/gherkin": "^30.0.0",
"@cucumber/html-formatter": "^21.7.0",
"@cucumber/message-streams": "^4.0.1",
"@cucumber/messages": "^27.0.0",
"@cucumber/pretty-formatter": "^1.0.1",
"@cucumber/tag-expressions": "^6.1.0",
"base64-js": "^1.5.1",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"common-ancestor-path": "^1.0.1",
"cosmiconfig": "^9.0.0",
"debug": "^4.3.6",
"error-stack-parser": "^2.1.4",
"find-cypress-specs": "^1.45.2",
"glob": "^10.4.5",
"mocha": "^10.7.0",
"seedrandom": "^3.0.5",
"source-map": "^0.6.1",
"split": "^1.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/parser": "^7.25.3",
"@babel/types": "^7.25.2",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.2",
"@cypress/browserify-preprocessor": "^3.0.2",
"@cypress/webpack-preprocessor": "^6.0.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@testing-library/dom": "^10.4.0",
"@types/cli-table": "^0.3.4",
"@types/common-ancestor-path": "^1.0.2",
"@types/debug": "^4.1.12",
"@types/glob": "^8.1.0",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.7",
"@types/path-browserify": "^1.0.3",
"@types/pngjs": "^6.0.5",
"@types/prettier": "^2.7.3",
"@types/seedrandom": "^3.0.8",
"@types/split": "^1.0.5",
"@types/stream-buffers": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"ast-types": "^0.15.2",
"cypress": "^13.13.2",
"esbuild": "^0.23.1",
"eslint": "^9.8.0",
"genversion": "^3.2.0",
"jsdom": "^24.1.1",
"patch-package": "^8.0.0",
"pngjs": "^7.0.0",
"prettier": "^3.3.3",
"recast": "^0.23.9",
"rollup": "^4.20.0",
"stream-buffers": "^3.0.3",
"strip-ansi": "^6.0.1",
"strip-indent": "^3.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsd": "^0.31.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0"
},
"peerDependencies": {
"cypress": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}