-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "playwright-testmo-reporter",
"version": "1.11.0",
"description": "A Playwright Reporter for the Testmo SaaS.",
"main": "dist/reporter.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"formatting:fix": "prettier --write .",
"formatting:check": "prettier --check .",
"lint:fix": "eslint --fix .",
"lint:check": "eslint .",
"prepare": "husky",
"preversion": "npm run lint:check && npm run formatting:check && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonasclaes/playwright-testmo-reporter.git"
},
"keywords": [
"playwright",
"testmo",
"reporter"
],
"author": "Jonas Claes <jonas@jonasclaes.be>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jonasclaes/playwright-testmo-reporter/issues"
},
"homepage": "https://github.com/jonasclaes/playwright-testmo-reporter#readme",
"peerDependencies": {
"@playwright/test": "^1.36.2",
"playwright-core": "^1.36.2"
},
"dependencies": {
"fast-xml-parser": "^4.4.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint": "^9.6.0",
"@types/node": "^22.0.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,ts}": "eslint --fix"
}
}