-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 3.83 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 3.83 KB
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
{
"name": "oxygen-cli",
"version": "1.44.1",
"description": "Automation framework for testing modern applications",
"main": "./build/index.js",
"bin": {
"oxygen": "./build/lib/cli.js"
},
"types": "types",
"exports": {
".": {
"require": "./build/index.js",
"types": "./types/index.d.ts"
}
},
"preferGlobal": true,
"encryptionKey": "G-KaPdSgVkYp3s6v8y/B?E(H+MbQeThW",
"repository": {
"type": "git",
"url": "git://github.com/oxygenhq/oxygen.git"
},
"keywords": [
"selenium",
"appium",
"webdriver",
"testing",
"automation",
"qa"
],
"author": {
"name": "CloudBeat Limited",
"email": "info@oxygenhq.org",
"url": "http://oxygenhq.org"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/oxygenhq/oxygen/issues"
},
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"babel-plugin-source-map-support": "2.2.0",
"cross-env": "7.0.3",
"doctrine": "3.0.0",
"eslint": "7.32.0",
"husky": "7.0.4",
"md-reverse": "1.0.0",
"tsc": "2.0.4",
"typescript": "4.9.5"
},
"@comment dependencies": [
"axios is a peer dependency of soap. when using npm 6 (node 12-14) it needs to be explicitly included. when we migrate to npm 7 (node 16+) it can be removed."
],
"dependencies": {
"@applitools/eyes-webdriverio": "5.39.1",
"@lambdatest/node-rest-client": "1.0.5",
"@oxygenhq/logger": "0.5.1",
"@oxygenhq/mitmproxy-node": "1.0.1",
"@oxygenhq/rp-client-javascript": "5.5.8-beta.5",
"@wdio/cli": "7.30.0",
"@wdio/devtools-service": "7.30.0",
"@wdio/sync": "7.30.0",
"async": "3.2.5",
"axios": "0.27.2",
"bson": "4.7.2",
"canvas": "2.11.2",
"chai": "4.3.7",
"chrome-har": "0.13.1",
"chrome-remote-interface": "0.33.0",
"config": "3.3.11",
"cross-spawn": "7.0.3",
"csv-parse": "4.16.3",
"cucumber": "6.0.5",
"deasync": "0.1.28",
"decache": "4.6.2",
"des.js": "1.1.0",
"download": "8.0.0",
"easyxml": "2.0.1",
"ejs": "3.1.9",
"env-paths": "2.2.1",
"esm": "3.2.25",
"fast-xml-parser": "4.2.5",
"fibers": "5.0.3",
"form-data": "4.0.0",
"glob": "7.2.3",
"glob-to-regexp": "0.4.1",
"global-agent": "3.0.0",
"got": "11.8.5",
"imap-simple": "5.1.0",
"install": "0.13.0",
"is-glob": "4.0.3",
"jimp": "0.16.3",
"js-md4": "0.3.2",
"junit-report-builder": "3.0.1",
"lodash": "4.17.21",
"mailparser": "3.5.0",
"minimist": "1.2.8",
"mockery": "2.1.0",
"moment": "2.29.4",
"mongodb": "3.7.4",
"node-addon-api": "3.0.2",
"nodemailer": "6.9.13",
"object-hash": "3.0.0",
"objects-to-csv": "1.3.6",
"pdf2json": "1.2.5",
"perfecto-reporting": "2.5.4",
"request": "2.88.2",
"sanitize-html": "2.17.0",
"saucelabs": "7.2.1",
"serialport": "9.2.8",
"soap": "0.45.0",
"socket.io": "^4.8.1",
"source-map-support": "0.5.21",
"stacktrace-parser": "0.1.10",
"testdouble": "3.16.8",
"testingbot-api": "1.0.8",
"twilio": "3.84.1",
"webdriverio": "7.30.0",
"when": "3.7.8",
"xlsx": "0.18.5"
},
"optionalDependencies": {
"odbc": "2.4.8"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf ./build",
"compile": "babel src/ -d build/ --config-file ./.babelrc --copy-files",
"test:lint": "eslint src test",
"test:unit": "jest",
"prepublishOnly": "npm run build && node tools/dos2unix src/lib/cli.js",
"postpublish": "node tools/unix2dos src/lib/cli.js",
"lint": "eslint \"src/**/*.js\" \"tools/**/*.js\"",
"apidoc": "node -r esm tools/apidoc",
"prod": "node ./build/lib/cli.js",
"dev": "cross-env DEBUG=true NODE_ENV=development npm run compile && npm run prod"
},
"engines": {
"node": ">=12.0 <15.0"
}
}