This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.68 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
{
"name": "wdio-aws-device-farm-service",
"version": "0.0.1",
"description": "A WebdriverIO service that lets you execute browser tests on AWS Device Farm",
"keywords": [
"webdriver",
"wdio",
"wdio-service",
"aws device farm"
],
"homepage": "https://github.com/kapoorlakshya/wdio-aws-device-farm-service",
"bugs": {
"url": "https://github.com/kapoorlakshya/wdio-aws-device-farm-service/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kapoorlakshya/wdio-aws-device-farm-service.git"
},
"license": "MIT",
"author": "Lakshya Kapoor <[email protected]>",
"main": "./build/index",
"scripts": {
"clean": "rm -rf node_modules",
"compile": "./node_modules/.bin/babel src --out-dir build",
"lint": "./node_modules/.bin/eslint --ext js,json . && prettier -c .",
"lint:fix": "./node_modules/.bin/eslint --fix --ext js,json --cache . && prettier --write .",
"test": "./node_modules/.bin/jest --coverage",
"watch": "./node_modules/.bin/babel src --watch --out-dir build"
},
"jest": {
"testMatch": [
"<rootDir>/tests/*.test.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"collectCoverageFrom": [
"<rootDir>/src/*.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/index.js"
]
},
"dependencies": {
"@wdio/cli": "^5.23.0",
"@wdio/logger": "^5.0.0",
"aws-sdk": "^2.814.0",
"webdriverio": "^5.23.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.11.5",
"@babel/plugin-proposal-optional-catch-binding": "^7.10.4",
"@babel/plugin-syntax-export-default-from": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@types/jest": "^26.0.13",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-source-map-support": "^2.1.3",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-json-files": "^0.8.1",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"jest": "^26.4.2",
"lodash": "^4.17.21",
"prettier": "^2.1.1"
},
"engines": {
"node": ">= 8.11.0"
},
"publishConfig": {
"access": "public"
}
}