-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"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": ">= 8"
},
"main": "src/mink.js",
"scripts": {
"coverage": "cat ./coverage/lcov.info | coveralls",
"test": "nyc --reporter=lcov --reporter=text cucumber-js test/",
"express": "node test/site/server.js"
},
"dependencies": {
"bluebird": "3.7.2",
"chai": "4.2.0",
"debug": "4.1.1",
"lodash.defaultsdeep": "4.6.1",
"puppeteer": "3.1.0"
},
"peerDependencies": {
"cucumber": "^6.0.0"
},
"devDependencies": {
"body-parser": "1.19.0",
"cucumber": "6.0.5",
"eslint": "7.1.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"express": "4.17.1",
"lodash.range": "3.2.0",
"morgan": "1.10.0",
"nunjucks": "3.2.1",
"nyc": "15.0.1",
"semantic-release": "17.0.7"
}
}