-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.1 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
{
"name": "selenium-federation",
"version": "0.11.14",
"description": "A lightweight alternative to selenium-grid.",
"engines": {
"node": ">=14.14.0"
},
"main": "dist/main.js",
"files": [
"bin",
"dist"
],
"bin": {
"selenium-federation": "./bin/selenium-federation",
"sf-pm2-start": "./bin/sf-pm2-start",
"sf-test": "./bin/sf-test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "git clean -xdf -e node_modules && tsc",
"start": "ts-node src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/link89/selenium-federation.git"
},
"keywords": [
"selenium",
"webdriver",
"testing"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/link89/selenium-federation/issues"
},
"homepage": "https://github.com/link89/selenium-federation#readme",
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/chrome-remote-interface": "^0.31.4",
"@types/http-proxy": "^1.17.9",
"@types/koa": "^2.11.6",
"@types/koa__router": "^8.0.11",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-logger": "^3.1.2",
"@types/koa-send": "^4.1.3",
"@types/lodash": "^4.14.176",
"@types/shelljs": "^0.8.11",
"@types/uuid": "^8.3.0",
"@types/yargs": "^15.0.10",
"chrome-remote-interface": "^0.31.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"@koa/router": "^10.1.1",
"@sentry/node": "^6.0.2",
"@sentry/tracing": "^6.0.2",
"axios": "^1.6.0",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"get-port": "^5.1.1",
"http-proxy": "^1.18.1",
"json-stringify-deterministic": "^1.0.7",
"koa": "^2.13.4",
"koa-bodyparser": "^2.5.0",
"koa-logger": "^3.2.1",
"koa-send": "^5.0.1",
"lodash": "^4.17.20",
"nanoid": "^3.3.4",
"path-to-regexp": "^6.2.0",
"purify-ts": "^1.1.0",
"shelljs": "^0.8.5",
"systeminformation": "^5.11.15",
"uuid": "^8.3.1",
"webdriverio": "^8.3.5",
"yaml": "^2.2.2",
"yargs": "^16.1.1",
"yup": "^0.32.11"
}
}