-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.11 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
{
"name": "wdio-lambdatest-service",
"version": "4.0.0",
"description": "A WebdriverIO service that manages tunnel and job metadata for LambdaTest.",
"author": "LambdaTest <[email protected]>",
"contributors": [
"LambdaTest <[email protected]> (https://www.npmjs.com/~lambdatestdev)"
],
"homepage": "https://github.com/LambdaTest/wdio-lambdatest-service",
"repository": {
"type": "git",
"url": "git://github.com/LambdaTest/wdio-lambdatest-service.git"
},
"license": "MIT",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"README.md",
"package.json"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "run-s clean compile",
"clean": "run-s clean:*",
"clean:build": "rimraf ./build",
"clean:logs": "rimraf *.log",
"clean:test-artifacts": "rimraf .lambdatest",
"compile": "babel src/ -d build/ --config-file ./babel.config.js",
"lint:staged": "git diff-index --cached --name-only --diff-filter=d HEAD | grep -E \".*\\.[cm]?js$\" | xargs -r node_modules/eslint/bin/eslint.js",
"prepare": "run-s build",
"postbuild": "cp src/*.d.ts build/",
"test": "run-s test:*",
"test:eslint": "eslint --cache src",
"test:unit": "vitest --coverage"
},
"keywords": [
"webdriver",
"wdio",
"wdio-service",
"lambdatest"
],
"bugs": {
"url": "https://github.com/LambdaTest/wdio-lambdatest-service/issues"
},
"dependencies": {
"@lambdatest/node-tunnel": "^4.0.1",
"@wdio/logger": "^7.0.0",
"axios": "^1.6.2",
"colors": "^1.4.0",
"form-data": "^4.0.0",
"source-map-support": "^0.5.21",
"winston": "^3.2.1"
},
"peerDependencies": {
"@wdio/cli": "^7.0.0 || ^8.0.0 || ^9.0.0",
"@wdio/types": "^7.0.0 || ^8.0.0 || ^9.0.0",
"webdriverio": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@octokit/rest": "^16.35.2",
"@vitest/coverage-c8": "^0.27.1",
"@vitest/coverage-v8": "^0.34.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-plugin-source-map-support": "^2.1.1",
"codecov": "^3.6.1",
"copyfiles": "^2.1.1",
"del": "^5.1.0",
"esbuild": "0.24.0",
"eslint": "^6.5.1",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.7",
"mime-types": "^2.1.24",
"npm-run-all": "^4.1.5",
"recursive-readdir": "^2.2.2",
"rimraf": "^3.0.0",
"tempy": "^0.3.0",
"typescript": "^3.6.3",
"vitest": "^0.34.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"pre-push": "npm run test:eslint"
}
},
"greenkeeper": {
"lockfiles": {
"outOfRangeUpdatesOnly": true
}
},
"directories": {
"test": "tests"
}
}