@bigbinary/neeto-playwright-reporter 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/index.cjs.js +18501 -0
- package/index.cjs.js.map +1 -0
- package/index.d.ts +8 -0
- package/index.js +18484 -0
- package/index.js.map +1 -0
- package/package.json +99 -0
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bigbinary/neeto-playwright-reporter",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "The custom playwright reporter for neeto-playwright-dashboard.",
|
|
5
|
+
"repository": "git@github.com:bigbinary/neeto-playwright-reporter.git",
|
|
6
|
+
"license": "apache-2.0",
|
|
7
|
+
"main": "./index.cjs.js",
|
|
8
|
+
"module": "./index.js",
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"prepare": "husky install",
|
|
12
|
+
"build": "NODE_ENV=production tsc && rollup -c rollup.config.js",
|
|
13
|
+
"watch": "tsc && rollup -c rollup.config.js --watch"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18.12",
|
|
17
|
+
"npm": ">=9",
|
|
18
|
+
"yarn": ">=1.22"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"index.*",
|
|
22
|
+
"index.d.ts",
|
|
23
|
+
"configs/*"
|
|
24
|
+
],
|
|
25
|
+
"lint-staged": {
|
|
26
|
+
"**/*.{js,jsx,ts,tsx,json,mjs}": [
|
|
27
|
+
".scripts/fix-lints.sh"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"resolutions": {
|
|
31
|
+
"strip-ansi": "6.0.1",
|
|
32
|
+
"string-width": "4.2.2",
|
|
33
|
+
"wrap-ansi": "7.0.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@bigbinary/eslint-plugin-neeto": "1.1.37",
|
|
37
|
+
"@bigbinary/neeto-audit-frontend": "1.0.8",
|
|
38
|
+
"@bigbinary/neeto-cist": "1.0.8",
|
|
39
|
+
"@faker-js/faker": "8.2.0",
|
|
40
|
+
"@playwright/test": "1.40.1",
|
|
41
|
+
"@rollup/plugin-alias": "5.1.0",
|
|
42
|
+
"@rollup/plugin-commonjs": "22.0.0",
|
|
43
|
+
"@rollup/plugin-json": "4.1.0",
|
|
44
|
+
"@rollup/plugin-node-resolve": "13.3.0",
|
|
45
|
+
"@rollup/plugin-typescript": "8.3.0",
|
|
46
|
+
"@types/node": "20.9.0",
|
|
47
|
+
"@types/ramda": "0.29.9",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "6.12.0",
|
|
49
|
+
"@typescript-eslint/parser": "6.12.0",
|
|
50
|
+
"dayjs": "1.11.1",
|
|
51
|
+
"eslint": "8.41.0",
|
|
52
|
+
"eslint-config-prettier": "8.5.0",
|
|
53
|
+
"eslint-plugin-cypress": "2.15.1",
|
|
54
|
+
"eslint-plugin-import": "2.26.0",
|
|
55
|
+
"eslint-plugin-jam3": "0.2.3",
|
|
56
|
+
"eslint-plugin-json": "3.1.0",
|
|
57
|
+
"eslint-plugin-playwright": "0.18.0",
|
|
58
|
+
"eslint-plugin-prettier": "4.0.0",
|
|
59
|
+
"eslint-plugin-promise": "6.0.0",
|
|
60
|
+
"eslint-plugin-react": "7.29.4",
|
|
61
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
62
|
+
"eslint-plugin-security": "1.7.1",
|
|
63
|
+
"eslint-plugin-sonarjs": "0.21.0",
|
|
64
|
+
"eslint-plugin-unused-imports": "2.0.0",
|
|
65
|
+
"eslint-plugin-xss": "0.1.12",
|
|
66
|
+
"husky": "7.0.4",
|
|
67
|
+
"lint-staged": "14.0.0",
|
|
68
|
+
"prettier": "2.6.2",
|
|
69
|
+
"ramda": "0.29.0",
|
|
70
|
+
"rollup": "2.76.0",
|
|
71
|
+
"rollup-plugin-analyzer": "4.0.0",
|
|
72
|
+
"rollup-plugin-cleaner": "1.0.0",
|
|
73
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
74
|
+
"rollup-plugin-styles": "4.0.0",
|
|
75
|
+
"rollup-plugin-typescript-paths": "1.4.0",
|
|
76
|
+
"tslib": "2.6.2"
|
|
77
|
+
},
|
|
78
|
+
"peerDependencies": {
|
|
79
|
+
"@bigbinary/neeto-cist": "1.0.8",
|
|
80
|
+
"@faker-js/faker": "8.2.0",
|
|
81
|
+
"@playwright/test": "1.40.1",
|
|
82
|
+
"dayjs": "1.11.1",
|
|
83
|
+
"dotenv-webpack": "8.0.1",
|
|
84
|
+
"i18next": "22.5.1",
|
|
85
|
+
"lint-staged": "14.0.0",
|
|
86
|
+
"ramda": "0.29.1"
|
|
87
|
+
},
|
|
88
|
+
"dependencies": {
|
|
89
|
+
"@rollup/plugin-typescript": "11.1.5",
|
|
90
|
+
"axios": "^1.6.7",
|
|
91
|
+
"dotenv": "16.3.1",
|
|
92
|
+
"dotenv-expand": "10.0.0",
|
|
93
|
+
"fast-glob": "3.3.2",
|
|
94
|
+
"glob": "10.3.10",
|
|
95
|
+
"immer": "^10.0.3",
|
|
96
|
+
"rollup-plugin-dts": "6.1.0",
|
|
97
|
+
"typescript": "5.3.2"
|
|
98
|
+
}
|
|
99
|
+
}
|