-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
98 lines (98 loc) · 2.36 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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "protractor-flake",
"description": "A wrapper for protractor to automatically re-run failed specs for a specific number of attempts",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/NickTomlin/protractor-flake.git"
},
"scripts": {
"serve": "bin/www",
"lint": "standard",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha --opts test/unit/mocha.opts",
"test:integration": "npm run build && npm run webdriver:update && mocha --opts test/integration/mocha.opts --slow 30001 --timeout 30000 --reporter tap",
"test:dev": "mocha --watch --opts test/unit/mocha.opts",
"build": "tsc",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"webdriver:update": "webdriver-manager update --standalone false --gecko false"
},
"bin": "./bin/protractor-flake",
"author": "Nick Tomlin",
"contributors": [
{
"name": "Oliver Daems"
},
{
"name": "Wim Selles",
"email": "[email protected]"
}
],
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.4",
"@types/node": "^10.12.18",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "5.0.1",
"chai": "^3.2.0",
"cookie-parser": "^1.3.5",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mocha": "^5.2.0",
"morgan": "^1.9.1",
"mversion": "^1.12.0",
"protractor": "^5.4.2",
"proxyquire": "^1.6.0",
"puppeteer": "^1.12.1",
"semantic-release": "^15.6.2",
"sinon": "^6.1.0",
"sinon-chai": "^3.2.0",
"standard": "^11.0.1",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"dependencies": {
"chalk": "^2.4.1",
"minimist": "^1.1.2",
"webdriver-manager": "^12.1.1"
},
"peerDependencies": {
"protractor": ">= 2.x"
},
"keywords": [
"protractor",
"flake",
"retry"
],
"standard": {
"ignore": [
"test/integration/support/protractor-config",
"lib"
],
"globals": [
"describe",
"context",
"before",
"sandbox",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"sinon",
"browser",
"$"
]
},
"files": [
"lib/**",
"bin/protractor-flake"
],
"types": "lib/index.d.ts",
"engines": {
"node": ">=6.9.x"
},
"version": "0.0.1-placeholder"
}