-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "playwright-gherkin",
"version": "0.1.10",
"description": "Generate Playwright test-runner code from gherkin files!",
"main": "lib/index.js",
"type": "module",
"homepage": "https://github.com/lucaelin/playwright-gherkin",
"repository": {
"type": "git",
"url": "https://github.com/lucaelin/playwright-gherkin.git"
},
"bugs": {
"url": "https://github.com/lucaelin/playwright-gherkin/issues"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "mocha --loader=ts-node/esm test/**/*.test.ts",
"test:file": "mocha --loader=ts-node/esm"
},
"bin": {
"playwright-gherkin": "./cli.js"
},
"author": "Luca Elin Haneklau",
"license": "MIT",
"keywords": [
"gherkin",
"playwright",
"cucumber",
"library"
],
"dependencies": {
"@cucumber/gherkin": "^26.2.0",
"@cucumber/messages": "^22.0.0",
"@types/glob-watcher": "^5.0.2",
"glob": "^10.2.2",
"glob-watcher": "^6.0.0",
"source-map": "^0.7.4"
},
"devDependencies": {
"@types/acorn": "^6.0.0",
"@types/chai": "^4.3.5",
"@types/estree": "^1.0.1",
"@types/expect": "^24.3.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@typescript-eslint/parser": "^5.59.2",
"acorn": "^8.8.2",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@playwright/test": "^1.33.0"
}
}