-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 1.58 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
{
"name": "wdio-wiremock-service",
"version": "7.0.2",
"description": "A WebdriverIO service to start & stop WireMock Standalone",
"author": "Erwin Heitzman <[email protected]>",
"homepage": "https://github.com/erwinheitzman/wdio-wiremock-service#readme",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erwinheitzman/wdio-wiremock-service.git"
},
"keywords": [
"webdriver",
"webdriverio",
"wdio",
"wdio-service",
"wiremock",
"standalone",
"server",
"mock",
"proxy",
"stub",
"tests"
],
"bugs": {
"url": "https://github.com/erwinheitzman/wdio-wiremock-service/issues"
},
"peerDependencies": {
"webdriverio": ">=7.0.0"
},
"dependencies": {
"tcp-port-used": "^1.0.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/tcp-port-used": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm t"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
],
"**/*.{yml,json,md,ts,js}": [
"prettier --write"
]
},
"engines": {
"node": ">=18"
}
}