-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "@axa-fr/cypress-component",
"version": "1.0.0",
"description": "This package aims to facilitate the reading and writing of Cypress tests. It improves the accessibility of DOM elements via a component-based approach, like current web frameworks. It also facilitates the management of routes whether in a plugged or unplugged environment.",
"author": "Pirlouit PROVIS",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "npm-run-all clean transpile-ts",
"clean": "rm -rf ./dist",
"transpile-ts": "tsc --project tsconfig.production.json"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"babel-jest": "^29.4.3",
"cypress": "^9.4.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-node": "^10.9.1"
},
"peerDependencies": {
"cypress": ">=8.0.0"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"keywords": [
"cypress",
"test",
"e2e",
"integration"
]
}