forked from webdriverio-community/wdio-intercept-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "wdio-intercept-service",
"version": "4.4.0",
"description": "Capture and assert HTTP ajax calls in webdriver.io 🕸",
"main": "index.js",
"scripts": {
"fix": "prettier --write \"**/*.{js,ts,yml,yaml}\"",
"prettier:check": "prettier --check \"**/*.{js,ts,yml,yaml}\"",
"lint": "eslint --fix .",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"test": "wdio run ./test/wdio.conf.js",
"prepare": "husky install"
},
"types": "./types/wdio-intercept-service.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-intercept-service.git"
},
"keywords": [
"selenium",
"webdriver",
"webdriverio",
"wdio-service",
"wdio-plugin",
"service",
"webdriverjs",
"fetch",
"ajax",
"http",
"test",
"testing"
],
"author": "Christian Maniewski <code@chmanie.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-intercept-service/issues"
},
"homepage": "https://github.com/webdriverio-community/wdio-intercept-service#readme",
"devDependencies": {
"@wdio/cli": "^8.3.11",
"@wdio/local-runner": "^8.3.11",
"@wdio/mocha-framework": "^8.3.0",
"@wdio/spec-reporter": "^8.3.0",
"chromedriver": "^116.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-wdio": "^8.0.14",
"express": "^4.18.2",
"geckodriver": "^4.0.0",
"husky": "^8.0.2",
"prettier": "^3.0.0",
"release-it": "^16.1.0",
"wdio-chromedriver-service": "^8.0.0",
"wdio-geckodriver-service": "^5.0.1",
"webdriverio": "^8.3.11"
},
"files": [
"lib/",
"types/",
"index.js",
"LICENSE",
"*.md"
]
}