@telefonica/acceptance-testing 4.1.0 → 5.0.0-beta2

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/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "@telefonica/acceptance-testing",
3
- "version": "4.1.0",
3
+ "version": "5.0.0-beta2",
4
4
  "author": "Telefonica",
5
5
  "license": "UNLICENSED",
6
- "module": "dist/acceptance-testing.esm.js",
7
6
  "main": "dist/index.js",
8
7
  "typings": "dist/index.d.ts",
9
8
  "bin": {
@@ -13,28 +12,32 @@
13
12
  "dist",
14
13
  "bin",
15
14
  "docker-compose.yaml",
16
- "jest-puppeteer-config.js"
15
+ "jest-puppeteer.config.js"
17
16
  ],
18
17
  "engines": {
19
18
  "node": ">=18"
20
19
  },
21
20
  "scripts": {
22
- "start": "tsdx watch",
23
- "build": "tsdx build",
24
- "test": "tsdx test",
21
+ "build": "rm -rf dist && yarn tsc --project tsconfig.production.json",
22
+ "test": "jest",
25
23
  "lint": "eslint --report-unused-disable-directives src",
26
- "prepare": "tsdx build",
27
- "prepack": "yarn test && yarn build"
24
+ "prettier:fix": "prettier --write .",
25
+ "prettier": "prettier --check .",
26
+ "prepare": "yarn build",
27
+ "prepack": "yarn prettier && yarn lint && yarn test && yarn build",
28
+ "ts-check": "tsc"
28
29
  },
29
30
  "devDependencies": {
30
31
  "@types/find-root": "^1.1.2",
31
32
  "@types/glob-to-regexp": "^0.4.1",
32
33
  "@typescript-eslint/eslint-plugin": "^6.10.0",
33
34
  "@typescript-eslint/parser": "^6.10.0",
34
- "babel-jest": "^29.7.0",
35
- "tsdx": "^0.14.1",
36
- "tslib": "^2.3.1",
37
- "typescript": "^4.4.4"
35
+ "eslint": "^9.7.0",
36
+ "jest": "^29.7.0",
37
+ "prettier": "^3.3.3",
38
+ "ts-jest": "^29.2.3",
39
+ "ts-node": "^10.9.2",
40
+ "typescript": "^5.5.3"
38
41
  },
39
42
  "repository": "git@github.com:Telefonica/js-toolbox.git",
40
43
  "publishConfig": {
@@ -47,7 +50,6 @@
47
50
  "glob-to-regexp": "^0.4.1",
48
51
  "istanbul-lib-coverage": "^3.2.2",
49
52
  "jest-image-snapshot": "^4.5.1",
50
- "node-fetch": "^2.6.5",
51
53
  "pptr-testing-library": "^0.6.5",
52
54
  "puppeteer": "^10.4.0"
53
55
  },