-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 2.36 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
{
"name": "wdio-aws-device-farm-service",
"version": "8.0.11",
"description": "AWS Device Farm support for WebdriverIO",
"keywords": [
"aws",
"devicefarm",
"webdriverio",
"wdio",
"wdio-service"
],
"contributors": [
"AWS Console Testing team <aws-console-testing@amazon.com>"
],
"bugs": {
"url": "https://github.com/awslabs/wdio-aws-device-farm-service/issues"
},
"homepage": "https://github.com/awslabs/wdio-aws-device-farm-service",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/wdio-aws-device-farm-service.git"
},
"main": "dist/index.js",
"type": "module",
"types": "types/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": true,
"clean": true,
"metafile": true,
"platform": "node",
"format": [
"esm",
"cjs"
],
"target": "node16",
"bundle": true,
"skipNodeModulesBundle": true
},
"files": [
"dist/",
"!/**/__mocks__",
"!/**/__tests__"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "tsup && tsc",
"clean": "rm -rf dist node_modules",
"lint": "eslint -c .eslintrc.cjs --ext .ts .",
"lintfix": "eslint -c .eslintrc.cjs --fix --ext .ts .",
"test": "vitest run --silent",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"example": "npx wdio ./example/wdio.conf.js"
},
"dependencies": {
"@aws-sdk/client-device-farm": "^3.363.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/eslint-plugin-tslint": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@wdio/cli": "^8.10.1",
"@wdio/local-runner": "^8.10.1",
"@wdio/mocha-framework": "^8.10.1",
"@wdio/spec-reporter": "^8.10.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.2",
"lint-staged": "^13.2.2",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,ts,md}": "prettier --write"
}
}