-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
{
"name": "playwright-rq",
"version": "2.0.1",
"description": "playwright request mocker",
"main": "dist/index.js",
"scripts": {
"test": "npx playwright test",
"build": "tsc"
},
"files": [
"dist/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nkyazhin/playwright-rq.git"
},
"keywords": [
"playwright",
"request",
"mocker",
"interceptor",
"response"
],
"author": "nikita.kryazhin",
"license": "ISC",
"bugs": {
"url": "https://github.com/nkyazhin/playwright-rq/issues"
},
"homepage": "https://github.com/nkyazhin/playwright-rq#readme",
"dependencies": {
"debug": "^4.3.1",
"url": "^0.11.0",
"lodash.ismatch": "^4.4.0"
},
"devDependencies": {
"@playwright/test": "^1.16.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/lodash.ismatch": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^37.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"express": "^4.17.1",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}