@applitools/nml-client 1.3.55 → 1.3.57

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +14 -21
package/CHANGELOG.md ADDED
@@ -0,0 +1,25 @@
1
+ # Changelog
2
+
3
+ ## [1.3.57](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client@1.3.56...js/nml-client@1.3.57) (2023-06-15)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * update some dependencies
9
+ * The following workspace dependencies were updated
10
+ * dependencies
11
+ * @applitools/req bumped from 1.3.1 to 1.3.2
12
+
13
+ ## [1.3.56](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client-v1.3.55...js/nml-client@1.3.56) (2023-06-13)
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * update some dependencies
19
+ * The following workspace dependencies were updated
20
+ * dependencies
21
+ * @applitools/logger bumped from 2.0.2 to 2.0.3
22
+ * @applitools/req bumped from 1.3.0 to 1.3.1
23
+ * @applitools/utils bumped from 1.3.37 to 1.4.0
24
+ * devDependencies
25
+ * @applitools/spec-driver-webdriverio bumped from ^1.5.2 to ^1.5.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/nml-client",
3
- "version": "1.3.55",
3
+ "version": "1.3.57",
4
4
  "description": "Client to integrate the SDKs to the Native Mobile Library (NML)",
5
5
  "homepage": "https://applitools.com",
6
6
  "bugs": {
@@ -16,10 +16,6 @@
16
16
  "name": "Applitools Team",
17
17
  "email": "team@applitools.com"
18
18
  },
19
- "aliases": [
20
- "nml-client",
21
- "nml"
22
- ],
23
19
  "files": [
24
20
  "dist",
25
21
  "types"
@@ -35,31 +31,28 @@
35
31
  "./package.json": "./package.json"
36
32
  },
37
33
  "scripts": {
38
- "lint": "node ../../node_modules/.bin/eslint '**/*.ts'",
39
- "build": "node ../../node_modules/.bin/tsc --project ./tsconfig.build.json",
40
- "test": "node ../../node_modules/.bin/mocha './test/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}",
41
- "test:sanity": "yarn test",
42
- "deps": "bongo deps",
43
- "preversion": "bongo preversion",
44
- "version": "bongo version",
45
- "postversion": "bongo postversion"
34
+ "lint": "run --top-level eslint '**/*.ts'",
35
+ "build": "run --top-level tsc --project ./tsconfig.build.json",
36
+ "test": "run --top-level mocha './test/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}"
46
37
  },
47
38
  "dependencies": {
48
- "@applitools/logger": "2.0.2",
49
- "@applitools/req": "1.3.0",
50
- "@applitools/utils": "1.3.37"
39
+ "@applitools/logger": "2.0.3",
40
+ "@applitools/req": "1.3.2",
41
+ "@applitools/utils": "1.4.0"
51
42
  },
52
43
  "devDependencies": {
53
- "@applitools/bongo": "^4.0.0",
54
- "@applitools/spec-driver-webdriverio": "^1.5.2",
44
+ "@applitools/spec-driver-webdriverio": "^1.5.3",
55
45
  "@applitools/test-server": "^1.2.2",
56
46
  "@applitools/test-utils": "^1.5.17",
57
47
  "@types/node": "^12.20.55",
58
- "chromedriver": "^109.0.0",
48
+ "chromedriver": "^114.0.1",
59
49
  "nock": "^13.2.9",
60
- "webdriverio": "^8.3.2"
50
+ "webdriverio": "^7.25.0"
61
51
  },
62
52
  "engines": {
63
53
  "node": ">=12.13.0"
54
+ },
55
+ "publishConfig": {
56
+ "access": "public"
64
57
  }
65
- }
58
+ }