This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "wdio-firefox-profile-service",
"version": "0.1.3",
"description": "WebdriverIO service to create a Firefox profile",
"author": "Christian Bromann <christian@saucelabs.com>",
"license": "MIT",
"homepage": "http://webdriver.io",
"main": "index.js",
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf ./build ./coverage",
"compile": "babel lib/ -d build/",
"eslint": "eslint ./lib test/",
"release": "np patch",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major",
"test": "run-s eslint test:e2e",
"test:e2e": "run-p test:e2e:**",
"test:e2e:remote": "wdio ./test/wdio.conf.js",
"test:e2e:multiremote": "wdio ./test/wdio.multiremote.conf.js",
"prepublish": "npm prune && run-s build",
"watch": "npm run compile -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/wdio-firefox-profile-service.git"
},
"keywords": [
"webdriverio",
"wdio",
"wdio-service",
"firefox",
"profile",
"selenium",
"e2e",
"test",
"automation",
"integration"
],
"bugs": {
"url": "https://github.com/webdriverio/wdio-firefox-profile-service/issues"
},
"dependencies": {
"firefox-profile": "~1.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-array-includes": "2.0.3",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"np": "^2.13.0",
"npm-run-all": "^4.0.2",
"wdio-mocha-framework": "^0.5.9",
"webdriverio": "^4.6.2"
}
}