@hitachivantara/uikit-react-viz 3.1.6 → 3.1.9
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 +13 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-viz",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.9",
|
|
4
4
|
"description": "A collection of React visualizations for the Hitachi Vantara's Design System.",
|
|
5
5
|
"homepage": "https://github.com/lumada-design/hv-uikit-react",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -18,16 +18,16 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "npx npm-run-all --npm-path npm --serial clean build:babel build:post:**",
|
|
20
20
|
"build:babel": "npx npm-run-all --npm-path npm --parallel build:babel:*",
|
|
21
|
-
"build:babel:node": "BABEL_ENV=commonjs npx babel --root-mode upward src -d dist --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored",
|
|
22
|
-
"build:babel:legacy": "BABEL_ENV=legacy npx babel --root-mode upward src -d dist/legacy --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored",
|
|
23
|
-
"build:babel:modern": "BABEL_ENV=modern npx babel --root-mode upward src -d dist/modern --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored",
|
|
24
|
-
"build:post:clean-snapshots": "npx
|
|
21
|
+
"build:babel:node": "cross-env BABEL_ENV=commonjs npx babel --root-mode upward src -d dist --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored",
|
|
22
|
+
"build:babel:legacy": "cross-env BABEL_ENV=legacy npx babel --root-mode upward src -d dist/legacy --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored",
|
|
23
|
+
"build:babel:modern": "cross-env BABEL_ENV=modern npx babel --root-mode upward src -d dist/modern --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored",
|
|
24
|
+
"build:post:clean-snapshots": "npx rimraf **/dist/**/tests",
|
|
25
25
|
"dev": "npx npm-run-all --npm-path npm clean dev:babel:watch",
|
|
26
|
-
"dev:babel:watch": "BABEL_ENV=commonjs npx babel --root-mode upward src -d dist --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored --watch",
|
|
27
|
-
"clean": "npx
|
|
28
|
-
"test": "jest
|
|
29
|
-
"test:watch": "jest
|
|
30
|
-
"test:update": "jest
|
|
26
|
+
"dev:babel:watch": "cross-env BABEL_ENV=commonjs npx babel --root-mode upward src -d dist --extensions '.js,.jsx' --source-maps --ignore '**/tests','**/stories' --copy-files --no-copy-ignored --watch",
|
|
27
|
+
"clean": "npx rimraf dist",
|
|
28
|
+
"test": "jest --coverage",
|
|
29
|
+
"test:watch": "jest --watch",
|
|
30
|
+
"test:update": "jest --u",
|
|
31
31
|
"prepublishOnly": "npm run build",
|
|
32
32
|
"link": "npm link",
|
|
33
33
|
"yalc-publish": "npx yalc publish --no-scripts",
|
|
@@ -42,33 +42,16 @@
|
|
|
42
42
|
"react-dom": "^16.13.1 || ^17.0.2"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@
|
|
46
|
-
"@hitachivantara/uikit-react-core": "^3.68.4",
|
|
45
|
+
"@hitachivantara/uikit-react-core": "^3.68.7",
|
|
47
46
|
"clsx": "^1.2.1",
|
|
48
|
-
"core-js": "^3.23.3",
|
|
49
|
-
"deep-diff": "^1.0.2",
|
|
50
47
|
"lodash": "^4.17.21",
|
|
51
48
|
"prop-types": "^15.8.1",
|
|
52
49
|
"react-plotly.js": "^2.5.1"
|
|
53
50
|
},
|
|
54
51
|
"devDependencies": {
|
|
55
|
-
"@testing-library/jest-dom": "^5.16.4",
|
|
56
|
-
"@testing-library/react": "^12.1.2",
|
|
57
|
-
"@testing-library/react-hooks": "^8.0.1",
|
|
58
|
-
"@testing-library/user-event": "^12.8.3",
|
|
59
52
|
"@types/lodash": "^4.14.182",
|
|
60
53
|
"@types/plotly.js": "^1.54.22",
|
|
61
|
-
"@
|
|
62
|
-
"del-cli": "^4.0.1",
|
|
63
|
-
"enzyme": "^3.11.0",
|
|
64
|
-
"enzyme-to-json": "^3.6.2",
|
|
65
|
-
"jest": "^28.1.2",
|
|
66
|
-
"jest-canvas-mock": "^2.4.0",
|
|
67
|
-
"jest-environment-jsdom": "^28.1.2",
|
|
68
|
-
"jest-fail-on-console": "^2.4.2",
|
|
69
|
-
"jest-junit": "^14.0.0",
|
|
70
|
-
"nodemon": "^2.0.19",
|
|
71
|
-
"npm-run-all": "^4.1.5"
|
|
54
|
+
"@types/react": "^17.0.47"
|
|
72
55
|
},
|
|
73
56
|
"files": [
|
|
74
57
|
"dist"
|
|
@@ -76,5 +59,5 @@
|
|
|
76
59
|
"publishConfig": {
|
|
77
60
|
"access": "public"
|
|
78
61
|
},
|
|
79
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "9b80593cd4b2f54784eae36a4ce3e4c3e9b6e403"
|
|
80
63
|
}
|