-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "e2e-tests",
"version": "0.0.1",
"description": "End to end testing",
"main": "",
"scripts": {
"test": "./node_modules/.bin/gulp --color",
"report": "./node_modules/.bin/allure report open",
"lint": "./node_modules/.bin/gulp semistandard"
},
"repository": {
"type": "git",
"url": "git://github.com/CoderDojo/cp-e2e-tests.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"allure-commandline": "^1.4.23",
"chai": "^3.5.0",
"chromedriver": "^2.25.1",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-semistandard": "^1.0.0",
"gulp-shell": "^0.5.2",
"gulp-webdriver": "^2.0.2",
"lodash": "^4.16.6",
"moment": "^2.16.0",
"wdio-allure-reporter": "^0.1.2",
"wdio-mocha-framework": "^0.5.3",
"wdio-selenium-standalone-service": "0.0.7",
"wdio-spec-reporter": "0.0.3",
"webdriverio": "4.6.0",
"yargs": "^6.4.0"
},
"semistandard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"expect",
"browser",
"$",
"$$",
"promiseSeries"
]
}
}