-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "wdio-intercept-service",
"version": "4.4.1",
"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"
},
"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": "^9.0.9",
"@wdio/local-runner": "^8.32.3",
"@wdio/mocha-framework": "^9.0.6",
"@wdio/spec-reporter": "^9.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-wdio": "^9.0.0",
"express": "^4.18.2",
"husky": "^9.0.11",
"prettier": "^3.2.0",
"release-it": "^17.0.1",
"webdriverio": "^8.32.0"
},
"files": [
"lib/",
"types/",
"index.js",
"LICENSE",
"*.md"
]
}