-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "@sesamecare-oss/playwright-prometheus-reporter",
"version": "1.0.6",
"description": "A custom reporter for Playwright that exposes (and pushes) prometheus metrics",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/sesamecare/playwright-prometheus-reporter",
"author": "Max Metral <[email protected]>",
"license": "MIT",
"config": {
"coconfig": "@openapi-typescript-infra/coconfig"
},
"keywords": [
"playwright",
"prometheus",
"reporter",
"metrics"
],
"scripts": {
"test": "yarn playwright test && node -e \"process.exitCode = require('fs').existsSync('metrics.txt') ? 0 : 1;\"",
"build": "tsc -p tsconfig.build.json",
"clean": "yarn dlx rimraf ./build",
"lint": "eslint src",
"postinstall": "coconfig"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@openapi-typescript-infra/coconfig": "^3.0.2",
"@playwright/test": "^1.36.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"coconfig": "^0.12.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"publishCmd": "yarn dlx pinst --disable"
}
],
"@semantic-release/npm",
"@semantic-release/git"
]
},
"packageManager": "[email protected]",
"dependencies": {
"prom-client": "^14.2.0"
}
}