-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
56 lines (56 loc) · 1.48 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
{
"version": "2.0.1",
"name": "protractor-retry",
"description": "module for protractor to automatically re-run failed tests with specific number of attempts",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/Protractor-retry"
},
"scripts": {
"lint": "eslint .",
"release": "standard-version",
"test": "protractor test/protractor.mocha.conf.js;echo '######### MOCHA DONE ########';protractor test/protractor.jasmine.conf.js;echo '######### JASMINE DONE ########';DEBUG=ProtractorRetry protractor test/protractor.suite.conf.js --suite=mochasuite"
},
"author": "Amro Tahtamouni",
"contributors": [
{
"name": "Amro Tahtamouni",
"email": "amrot@oath.com"
},
{
"name": "Dreux Ludovic",
"email": "dreuxl@verizonmedia.com"
}
],
"license": "MIT",
"dependencies": {
"array-unique": "~0.3.2",
"chai": "3.x",
"chai-as-promised": "5.x",
"cross-spawn": "^7.0.2",
"debug": "^2.1.1",
"lodash": "^4.17.19",
"mkdirp": "^0.5.1",
"q": "^1.4.1",
"xml2js": "~0.4.17",
"yargs": "^16.1.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-eslint": "^6.0.0",
"eslint-plugin-jsdoc": "^15.12.2",
"eslint-plugin-node": "^9.2.0",
"jasmine-expect": "^2.0.2",
"mocha": "^8.1.0",
"protractor": "^5.0.0",
"standard-version": "^9.0.0"
},
"keywords": [
"protractor",
"retry",
"automation",
"javascript",
"tests"
]
}