forked from webdriverio/jasmine-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "jasmine-boilerplate",
"version": "1.0.0",
"author": "Christian Bromann <christian@saucelabs.com>",
"description": "Boilerplate project to run WebdriverIO tests with Jasmine",
"license": "MIT",
"homepage": "https://github.com/webdriverio/jasmine-boilerplate#readme",
"main": "./node_modules/.bin/wdio",
"keywords": [
"webdriver",
"webdriverio",
"jasmine",
"e2e",
"selenium",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/jasmine-boilerplate.git"
},
"bugs": {
"url": "https://github.com/webdriverio/jasmine-boilerplate/issues"
},
"scripts": {
"test": "wdio run wdio.sauce.conf.ts",
"test:local": "wdio run wdio.local.conf.ts",
"test:sauce": "wdio run wdio.sauce.conf.ts"
},
"devDependencies": {
"@wdio/cli": "^7.2.3",
"@wdio/jasmine-framework": "^7.2.3",
"@wdio/local-runner": "^7.2.3",
"@wdio/sauce-service": "^7.2.3",
"@wdio/spec-reporter": "^7.2.1",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"wdio-chromedriver-service": "^7.0.0",
"webdriverio": "^7.0.5"
}
}