-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
72 lines (72 loc) · 1.58 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
{
"name": "cucumber-mink",
"version": "0.0.0-semantic-release",
"description": "Cucumber-js Mink - Step definitions library",
"keywords": [
"testing",
"bdd",
"cucumber",
"cucumber-js",
"gherkin",
"tests",
"puppeteer"
],
"license": "MIT",
"author": {
"name": "Arnaud Dezandee",
"email": "[email protected]"
},
"homepage": "https://github.com/arnaud-dezandee/cucumber-mink",
"repository": {
"type": "git",
"url": "git+https://github.com/arnaud-dezandee/cucumber-mink.git"
},
"bugs": {
"url": "http://github.com/arnaud-dezandee/cucumber-mink/issues"
},
"engines": {
"node": ">= 18"
},
"main": "src/mink.js",
"scripts": {
"test": "wireit",
"express": "wireit"
},
"wireit": {
"test": {
"command": "nyc --reporter=lcov --reporter=text cucumber-js test/",
"dependencies": [
"express"
]
},
"express": {
"command": "node test/site/server.js",
"service": {
"readyWhen": {
"lineMatches": "App server running at http://localhost:3000"
}
}
}
},
"dependencies": {
"bluebird": "3.7.2",
"chai": "4.5.0",
"debug": "4.4.0",
"lodash.defaultsdeep": "4.6.1",
"puppeteer": "^24.2.1"
},
"peerDependencies": {
"@cucumber/cucumber": "^11.2.0"
},
"devDependencies": {
"@cucumber/cucumber": "^11.2.0",
"body-parser": "1.20.3",
"express": "4.21.2",
"lodash.range": "3.2.0",
"morgan": "1.10.0",
"nunjucks": "3.2.4",
"nyc": "17.1.0",
"prettier": "3.5.1",
"wireit": "^0.14.11"
}
}