This repository has been archived by the owner on Sep 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "gherkin-testcafe",
"version": "2.5.1",
"author": "Lukas Kullmann <[email protected]>",
"contributors": [
"Wilhelm Behncke <[email protected]>",
"Jarmo Koivisto",
"Jakob Ström",
"Jussi Mullo",
"Mert Susur",
"Matthew Mangion",
"Danilo Cestari <[email protected]>",
"Arthur Warnier"
],
"repository": {
"type": "git",
"url": "https://github.com/kiwigrid/gherkin-testcafe"
},
"license": "MIT",
"keywords": [
"gherkin",
"cucumber",
"testcafe",
"acceptance testing"
],
"files": [
"main.js",
"index.d.ts",
"src/"
],
"types": "index.d.ts",
"bin": {
"gherkin-testcafe": "./main.js"
},
"main": "src/index.js",
"scripts": {
"prettier": "prettier --write 'src/**/*.js' README.md main.js index.d.ts",
"prettier-check": "prettier --list-different 'src/**/*.{js,yaml,yml,json,md}'",
"google-example": "node main.js chrome examples/google.ts ./examples/google.feature",
"datatable-example": "node main.js chrome ./examples/datatable.js ./examples/datatable.feature",
"custom-param-type-example": "node main.js chrome examples/google.ts ./examples/custom-param-type.js ./examples/custom-param-type.feature --param-type-registry-file ./examples/custom-param-type-registry.js"
},
"dependencies": {
"gherkin": "^8.1.1"
},
"peerDependencies": {
"cucumber": "^5.1.0",
"testcafe": "^1.3.3"
},
"devDependencies": {
"cucumber": "^5.1.0",
"prettier": "^1.17.1",
"testcafe": "^1.8.6"
}
}