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 21
/
package.json
155 lines (155 loc) · 4.88 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "webdriverio",
"description": "A Node.js bindings implementation for the W3C WebDriver protocol",
"version": "4.14.4",
"homepage": "http://webdriver.io",
"author": "Camilo Tapia <camilo.tapia@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/webdriverio/webdriverio.git"
},
"bugs": {
"url": "https://github.com/webdriverio/webdriverio/issues"
},
"license": "MIT",
"main": "./build/index.js",
"bin": {
"wdio": "bin/wdio"
},
"engines": {
"node": ">= 4.8.5"
},
"scripts": {
"build": "run-s clean compile copy",
"clean": "run-p clean:*",
"clean:build": "rimraf build",
"clean:coverage": "rimraf coverage",
"clean:cordova": "rimraf test/site/platforms test/site/plugins",
"clean:ios": "rimraf test/site/platforms/ios",
"clean:android": "rimraf test/site/platforms/android",
"compile": "run-p compile:*",
"compile:index": "mkdir -p build && babel index.js --out-file build/index.js",
"compile:lib": "babel lib/ -d build/lib",
"compile:cleanup_for_windows": "rimraf -p",
"cordova": "npm-run-all cordova:add_platforms --parallel cordova:compile:*",
"cordova:add_platforms": "cd ./test/site && cordova platform add ios android && cd ../../",
"cordova:compile:android": "cd ./test/site && cordova build android && cd ../../",
"cordova:compile:ios": "cd ./test/site && cordova build ios && cd ../../",
"copy": "run-p copy:*",
"copy:packagejson": "cpx package.json build",
"copy:ejstemplate": "cpx lib/helpers/wdio.conf.ejs build/lib/helpers/",
"eslint": "eslint ./lib test/",
"release": "np patch",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major",
"test": "run-s eslint test:unit",
"test:android": "mocha test/setup.js test/spec/mobile/*.js test/spec/mobile/android/*.js",
"test:ci": "run-s eslint build test:$_ENV",
"test:cover": "babel-node ./node_modules/.bin/isparta cover --include 'lib/*.js' _mocha",
"test:desktop": "mocha test/setup.js test/spec/*.js test/spec/desktop/*.js",
"test:functional": "mocha test/setup.js test/spec/functional/**/*.js",
"test:ios": "mocha test/setup.js test/spec/mobile/*.js test/spec/mobile/ios/*.js",
"test:mobile": "run-s test:ios test:android",
"test:multibrowser": "mocha test/setup.js test/spec/multibrowser/**/*.js",
"test:snyk": "snyk auth $SNYK_AUTH_TOKEN && snyk test",
"test:unit": "mocha test/setup-unit.js test/spec/unit/*.js",
"test:wdio": "mocha test/setup-unit.js test/spec/wdio/*.js",
"postversion": "run-s build",
"prepare": "npm prune",
"watch": "npm run compile:lib -- --watch"
},
"dependencies": {
"archiver": "~2.1.0",
"babel-runtime": "^6.26.0",
"css-parse": "^2.0.0",
"css-value": "~0.0.1",
"deepmerge": "~2.0.1",
"ejs": "~2.5.6",
"gaze": "~1.1.2",
"glob": "~7.1.1",
"grapheme-splitter": "^1.0.2",
"inquirer": "~3.3.0",
"json-stringify-safe": "~5.0.1",
"mkdirp": "~0.5.1",
"npm-install-package": "~2.1.0",
"optimist": "~0.6.1",
"q": "~1.5.0",
"request": "^2.83.0",
"rgb2hex": "^0.1.9",
"safe-buffer": "~5.1.1",
"supports-color": "~5.0.0",
"url": "~0.11.0",
"wdio-dot-reporter": "~0.0.8",
"wgxpath": "~1.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.3",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.3.0",
"chai-things": "^0.2.0",
"codeclimate-test-reporter": "^0.5.0",
"cordova": "^7.0.1",
"coveralls": "^3.0.0",
"cpx": "^1.5.0",
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"mock-require": "^2.0.2",
"nock": "^9.0.13",
"node-static": "^0.7.9",
"np": "^2.16.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.2",
"sauce-connect-launcher": "^1.2.1",
"saucelabs": "^1.4.0",
"sinon": "^4.0.0",
"snyk": "^1.28.0",
"wdio-mocha-framework": "^0.5.9"
},
"tags": [
"webdriver",
"selenium",
"test",
"automation",
"browser",
"javascript",
"node"
],
"keywords": [
"webdriverio",
"webdriver",
"selenium",
"appium",
"saucelabs",
"sauce",
"labs",
"mocha",
"nodeUnit",
"buster",
"phantomjs",
"chai",
"vows",
"jasmine",
"assert",
"cucumber",
"testingbot"
]
}