forked from NickTomlin/protractor-flake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.98 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
{
"name": "protractor-flake",
"description": "A wrapper for protractor to automatically re-run failed specs for a specific number of attempts",
"main": "dist/index.js",
"version": "2.1.7",
"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 && npm run test:integration",
"test:unit": "mocha --opts test/unit/mocha.opts",
"test:integration": "webdriver-manager update && npm run build && mocha --opts test/integration/mocha.opts --slow 30001 --timeout 30000 --reporter tap",
"test:dev": "mocha --watch --opts test/unit/mocha.opts",
"build": "babel -d dist src",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": "./bin/protractor-flake",
"author": "Nick Tomlin",
"contributors": [
{
"name": "Oliver Daems"
},
{
"name": "Wim Selles",
"email": "wim@wswebcreation.nl"
}
],
"license": "ISC",
"devDependencies": {
"babel": "^5.8.20",
"chai": "^3.2.0",
"cookie-parser": "^1.3.5",
"express": "^4.13.1",
"express-session": "^1.11.3",
"mocha": "^2.2.5",
"morgan": "^1.6.1",
"mversion": "^1.10.0",
"protractor": "^2.1.0",
"proxyquire": "^1.6.0",
"semantic-release": "^4.3.4",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"standard": "^5.4.1"
},
"dependencies": {
"minimist": "^1.1.2",
"core-js": "^0.9.18"
},
"peerDependencies": {
"protractor": ">= 2.x"
},
"keywords": [
"protractor",
"flake",
"retry"
],
"standard": {
"ignore": [
"test/integration/support/protractor-config",
"dist"
],
"globals": [
"describe",
"context",
"before",
"sandbox",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"sinon",
"browser",
"$"
]
}
}