-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
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
{
"name": "@cucumber-e2e/po",
"version": "0.10.0",
"description": "Implementation of page object pattern for cucumber testing framework",
"main": "index.js",
"scripts": {
"docs": "jsdoc ./src/ -r -t ./node_modules/minami",
"test:unit": "jest --testPathIgnorePatterns=\"protractor.test.js\" --testPathIgnorePatterns=\"webdriverio.test.js\" --testPathIgnorePatterns=\"selenium.test.js\" --testPathIgnorePatterns=\"types.test.ts\"",
"test:protractor": "protractor ./test/protractor.conf.js",
"test:webdriverio": "wdio ./test/webdriverio.conf.js",
"test:selenium": "jest --testPathIgnorePatterns=\"protractor.test.js\" --testPathIgnorePatterns=\"webdriverio.test.js\" --testPathIgnorePatterns=\"abstractPage.test.js\" --testPathIgnorePatterns=\"pageMap.test.js\" --testPathIgnorePatterns=\"types.test.ts\"",
"wd:update": "webdriver-manager-replacement update --versions.chrome=83.0.4103.39",
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/AlexGalichenko/cucumber-e2e-po.git"
},
"bugs": {
"url": "https://github.com/AlexGalichenko/cucumber-e2e-po/issues",
"email": "[email protected]"
},
"keywords": [
"cucumber",
"protractor",
"automation",
"BDD",
"KDT",
"page object",
"po",
"pop"
],
"publishConfig": {
"access": "public"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/.+/"
]
},
"author": "Alexander Galichenko",
"contributors": [
"Aliaksandr Kruk"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@wdio/cli": "^6.4.2",
"@wdio/dot-reporter": "^6.4.0",
"@wdio/jasmine-framework": "^6.4.0",
"@wdio/local-runner": "^6.4.2",
"@wdio/selenium-standalone-service": "^6.4.0",
"@wdio/spec-reporter": "^6.4.0",
"chromedriver": "^84.0.1",
"jest": "^24.9.0",
"jsdoc": "^3.6.5",
"minami": "^1.2.3",
"protractor": "^7.0.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"wdio-chromedriver-service": "^6.0.3",
"webdriver-manager-replacement": "^2.0.2",
"webdriverio": "^6.0.0"
},
"peerDependencies": {
"protractor": "^7.0.0",
"selenium-webdriver": "^4.0.0-alpha.3",
"webdriverio": "^6.0.0"
}
}