@maestro_io/maestro-web-sdk 5.3.3-beta.0 → 5.3.4
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestro_io/maestro-web-sdk",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "5.3.
|
|
4
|
+
"version": "5.3.4",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/maestro-web-sdk.umd.js",
|
|
@@ -22,60 +22,59 @@
|
|
|
22
22
|
"*.css"
|
|
23
23
|
],
|
|
24
24
|
"engines": {
|
|
25
|
-
"node": ">=
|
|
25
|
+
"node": ">=10"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"dev": "nodemon",
|
|
29
|
-
"sdk-only": "webpack
|
|
29
|
+
"sdk-only": "webpack-dev-server --config webpack/webpack.dev.js",
|
|
30
30
|
"lint": "eslint src --ext .ts,.tsx --ignore-pattern '**/*.test.*'",
|
|
31
31
|
"test": "jest",
|
|
32
|
-
"build": "webpack --config webpack/webpack.prod.js && tsc --
|
|
33
|
-
"types": "tsc
|
|
32
|
+
"build": "webpack --config webpack/webpack.prod.js && tsc --emitDeclarationOnly --declarationDir dist/types && dts-bundle --name @maestro_io/maestro-web-sdk --main dist/types/src/index.d.ts --out ../../index.d.ts && rm -rf dist/types",
|
|
33
|
+
"types": "tsc -b",
|
|
34
34
|
"analyze": "ANALYZE=true webpack --config webpack/webpack.prod.js",
|
|
35
35
|
"format": "prettier --write .",
|
|
36
36
|
"format:check": "prettier --check ."
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@babel/core": "
|
|
39
|
+
"@babel/core": "7.12.3",
|
|
40
|
+
"@babel/plugin-proposal-class-properties": "7.12.1",
|
|
40
41
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
41
|
-
"@babel/preset-env": "
|
|
42
|
-
"@babel/preset-react": "
|
|
43
|
-
"@babel/preset-typescript": "
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@testing-library/user-event": "^13.5.0",
|
|
48
|
-
"@types/jest": "^29.5.14",
|
|
49
|
-
"@types/node": "^18.0.0",
|
|
42
|
+
"@babel/preset-env": "7.12.1",
|
|
43
|
+
"@babel/preset-react": "7.12.1",
|
|
44
|
+
"@babel/preset-typescript": "7.12.1",
|
|
45
|
+
"@types/enzyme-adapter-react-16": "^1.0.6",
|
|
46
|
+
"@types/jest": "24.0.25",
|
|
47
|
+
"@types/node": "10",
|
|
50
48
|
"@types/prop-types": "^15.7.10",
|
|
51
49
|
"@types/react": "16.14.34",
|
|
52
50
|
"@types/react-dom": "16.9.18",
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "
|
|
54
|
-
"@typescript-eslint/parser": "
|
|
55
|
-
"babel-jest": "
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "2.34.0",
|
|
52
|
+
"@typescript-eslint/parser": "2.34.0",
|
|
53
|
+
"babel-jest": "26.6.3",
|
|
56
54
|
"babel-loader": "8",
|
|
57
|
-
"css-loader": "
|
|
55
|
+
"css-loader": "5",
|
|
58
56
|
"dts-bundle": "^0.7.3",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"eslint
|
|
57
|
+
"enzyme": "3.11.0",
|
|
58
|
+
"enzyme-adapter-react-16": "1.15.7",
|
|
59
|
+
"eslint": "6.8.0",
|
|
60
|
+
"eslint-config-prettier": "6.0.0",
|
|
61
|
+
"eslint-plugin-react": "7.20.0",
|
|
62
62
|
"file-loader": "^6.2.0",
|
|
63
63
|
"globals": "^10",
|
|
64
|
-
"html-webpack-plugin": "
|
|
64
|
+
"html-webpack-plugin": "4",
|
|
65
65
|
"husky": "^6.0.0",
|
|
66
66
|
"identity-obj-proxy": "^3.0.0",
|
|
67
|
-
"jest": "
|
|
68
|
-
"jest-environment-jsdom": "^29",
|
|
67
|
+
"jest": "26.6.3",
|
|
69
68
|
"nodemon": "^3.1.9",
|
|
70
|
-
"prettier": "
|
|
69
|
+
"prettier": "2.0.5",
|
|
71
70
|
"react-test-renderer": "16.14.0",
|
|
72
|
-
"style-loader": "
|
|
71
|
+
"style-loader": "2",
|
|
73
72
|
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
74
|
-
"typescript": "^
|
|
75
|
-
"webpack": "
|
|
76
|
-
"webpack-bundle-analyzer": "
|
|
77
|
-
"webpack-cli": "
|
|
78
|
-
"webpack-dev-server": "
|
|
73
|
+
"typescript": "^4",
|
|
74
|
+
"webpack": "4",
|
|
75
|
+
"webpack-bundle-analyzer": "3.9.0",
|
|
76
|
+
"webpack-cli": "3.3.12",
|
|
77
|
+
"webpack-dev-server": "3.11.2"
|
|
79
78
|
},
|
|
80
79
|
"dependencies": {
|
|
81
80
|
"@sentry/browser": "7.68.0",
|
|
@@ -89,6 +88,8 @@
|
|
|
89
88
|
"react-dom": "^16.0.0"
|
|
90
89
|
},
|
|
91
90
|
"resolutions": {
|
|
91
|
+
"sockjs-client": "1.5.1",
|
|
92
|
+
"cheerio": "0.22.0",
|
|
92
93
|
"@sentry/replay": "0.6.14"
|
|
93
94
|
}
|
|
94
95
|
}
|