-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
75 lines (75 loc) · 2.49 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
{
"name": "@testing-library/webdriverio",
"version": "1.0.0-semantically-released",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "npm-run-all build:cjs build:esm",
"build:cjs": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.esm.json",
"lint": "kcd-scripts lint",
"test:unit": "kcd-scripts test --no-watch --config=jest.config.js",
"validate": "kcd-scripts validate build,lint,test,typecheck",
"test:puppeteer": "wdio wdio.conf.js",
"test:selenium-standalone": "wdio wdio.conf.selenium-standalone.js",
"test:chromedriver": "wdio wdio.conf.chromedriver.js",
"test:geckodriver": "wdio wdio.conf.geckodriver.js",
"test": "npm-run-all test:puppeteer test:selenium-standalone test:chromedriver test:geckodriver",
"semantic-release": "semantic-release",
"typecheck:async": "tsc -p ./test/async/tsconfig.json",
"typecheck:sync": "tsc -p ./test/sync/tsconfig.json",
"typecheck:build": "npm run build:cjs -- --noEmit && npm run build:esm -- --noEmit",
"typecheck": "npm-run-all typecheck:build typecheck:**",
"prepare": "selenium-standalone install --drivers.chrome.version=${CHROMEDRIVER_VERSION:-latest} --drivers.gecko.version=${GECKODRIVER_VERSION:-latest}"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.4.3",
"@testing-library/dom": "^8.17.1",
"simmerjs": "^0.5.6"
},
"peerDependencies": {
"webdriverio": "*"
},
"devDependencies": {
"@types/simmerjs": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@wdio/cli": "^7.19.0",
"@wdio/local-runner": "^7.19.0",
"@wdio/mocha-framework": "^7.19.0",
"@wdio/selenium-standalone-service": "^7.19.0",
"@wdio/spec-reporter": "^7.19.0",
"@wdio/sync": "^7.19.0",
"eslint": "^7.6.0",
"geckodriver": "^3.2.0",
"kcd-scripts": "^11.1.0",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.4.2",
"wdio-chromedriver-service": "^7.3.2",
"wdio-geckodriver-service": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/webdriverio-testing-library.git"
},
"release": {
"branches": [
"main",
"next"
]
},
"publishConfig": {
"access": "public"
}
}