@equallyze/wally-cypress 0.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/LICENSE +21 -0
- package/README.md +416 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +398 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +395 -0
- package/dist/index.mjs.map +1 -0
- package/dist/plugin-DE0EFpNI.d.mts +182 -0
- package/dist/plugin-DE0EFpNI.d.ts +182 -0
- package/dist/plugin.d.mts +1 -0
- package/dist/plugin.d.ts +1 -0
- package/dist/plugin.js +363 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +355 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/support.d.mts +27 -0
- package/dist/support.d.ts +27 -0
- package/dist/support.js +45 -0
- package/dist/support.js.map +1 -0
- package/dist/support.mjs +43 -0
- package/dist/support.mjs.map +1 -0
- package/package.json +113 -0
package/package.json
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@equallyze/wally-cypress",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Plugin Cypress para integração com Wally - Plataforma de Testes de Acessibilidade",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./plugin": {
|
|
15
|
+
"types": "./dist/plugin.d.ts",
|
|
16
|
+
"import": "./dist/plugin.mjs",
|
|
17
|
+
"require": "./dist/plugin.js"
|
|
18
|
+
},
|
|
19
|
+
"./support": {
|
|
20
|
+
"types": "./dist/support.d.ts",
|
|
21
|
+
"import": "./dist/support.mjs",
|
|
22
|
+
"require": "./dist/support.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"dev": "tsup --watch",
|
|
33
|
+
"clean": "rm -rf dist",
|
|
34
|
+
"prepublishOnly": "npm run build",
|
|
35
|
+
"test": "jest",
|
|
36
|
+
"test:watch": "jest --watch",
|
|
37
|
+
"test:coverage": "jest --coverage",
|
|
38
|
+
"test:ci": "jest --coverage --ci --reporters=default --reporters=jest-junit",
|
|
39
|
+
"lint": "eslint src --ext .ts",
|
|
40
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"format": "prettier --write 'src/**/*.ts'",
|
|
43
|
+
"format:check": "prettier --check 'src/**/*.ts'",
|
|
44
|
+
"validate": "npm run typecheck && npm run lint && npm run test:coverage",
|
|
45
|
+
"prepare": "husky",
|
|
46
|
+
"commit": "cz"
|
|
47
|
+
},
|
|
48
|
+
"lint-staged": {
|
|
49
|
+
"src/**/*.ts": [
|
|
50
|
+
"eslint --fix",
|
|
51
|
+
"prettier --write"
|
|
52
|
+
],
|
|
53
|
+
"*.{json,md}": [
|
|
54
|
+
"prettier --write"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"config": {
|
|
58
|
+
"commitizen": {
|
|
59
|
+
"path": "@commitlint/cz-commitlint"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"cypress",
|
|
64
|
+
"accessibility",
|
|
65
|
+
"a11y",
|
|
66
|
+
"wcag",
|
|
67
|
+
"nbr17225",
|
|
68
|
+
"eaa",
|
|
69
|
+
"wally",
|
|
70
|
+
"testing",
|
|
71
|
+
"automation",
|
|
72
|
+
"acessibilidade"
|
|
73
|
+
],
|
|
74
|
+
"author": "Equallyze <contato@equallyze.com>",
|
|
75
|
+
"license": "MIT",
|
|
76
|
+
"repository": {
|
|
77
|
+
"type": "git",
|
|
78
|
+
"url": "https://gitlab.com/ucloud-tech/wally/wally-cypress.git"
|
|
79
|
+
},
|
|
80
|
+
"bugs": {
|
|
81
|
+
"url": "https://gitlab.com/ucloud-tech/wally/wally-cypress/-/issues"
|
|
82
|
+
},
|
|
83
|
+
"homepage": "https://acessibilidade.global",
|
|
84
|
+
"peerDependencies": {
|
|
85
|
+
"cypress": ">=12.0.0"
|
|
86
|
+
},
|
|
87
|
+
"devDependencies": {
|
|
88
|
+
"@commitlint/cli": "^19.0.3",
|
|
89
|
+
"@commitlint/config-conventional": "^19.0.3",
|
|
90
|
+
"@commitlint/cz-commitlint": "^19.0.3",
|
|
91
|
+
"@types/jest": "^29.5.11",
|
|
92
|
+
"@types/node": "^20.11.0",
|
|
93
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
94
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
95
|
+
"commitizen": "^4.3.0",
|
|
96
|
+
"cypress": "^15.7.1",
|
|
97
|
+
"eslint": "^8.56.0",
|
|
98
|
+
"eslint-config-prettier": "^9.1.0",
|
|
99
|
+
"eslint-plugin-jest": "^27.6.3",
|
|
100
|
+
"husky": "^9.0.11",
|
|
101
|
+
"inquirer": "^9.2.14",
|
|
102
|
+
"jest": "^29.7.0",
|
|
103
|
+
"jest-junit": "^16.0.0",
|
|
104
|
+
"lint-staged": "^15.2.2",
|
|
105
|
+
"prettier": "^3.2.5",
|
|
106
|
+
"ts-jest": "^29.1.1",
|
|
107
|
+
"tsup": "^8.0.1",
|
|
108
|
+
"typescript": "^5.3.3"
|
|
109
|
+
},
|
|
110
|
+
"engines": {
|
|
111
|
+
"node": ">=18.0.0"
|
|
112
|
+
}
|
|
113
|
+
}
|