-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "polly-adapter-playwright",
"version": "2.4.0",
"description": "Polly.JS adapter for Playwright",
"repository": "https://github.com/redabacha/polly-adapter-playwright.git",
"author": "Reda Bacha",
"license": "MIT",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf .eslintcache dist node_modules tsconfig.tsbuildinfo",
"lint": "eslint --cache src"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"packageManager": "yarn@4.1.1",
"peerDependencies": {
"@pollyjs/adapter": "^6.0.0"
},
"devDependencies": {
"@pollyjs/adapter": "^6.0.6",
"@pollyjs/core": "^6.0.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"playwright-core": "^1.43.1",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"typescript": "^5.4.5"
}
}