react-generic-tools 0.0.38 → 0.0.40
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/index.js +0 -0
- package/package.json +33 -30
- package/testHelper.js +0 -0
package/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-generic-tools",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.40",
|
|
4
4
|
"description": "Generic utility types, methods and components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"utility",
|
|
@@ -42,37 +42,38 @@
|
|
|
42
42
|
"postversion": "yarn publish --non-interactive; git push --tags && git push",
|
|
43
43
|
"serve": "weboptimizer serve",
|
|
44
44
|
"start": "yarn serve",
|
|
45
|
-
"test": "yarn clear && weboptimizer test
|
|
46
|
-
"test:browser": "yarn clear && weboptimizer test:browser
|
|
45
|
+
"test": "yarn clear && weboptimizer test",
|
|
46
|
+
"test:browser": "yarn clear && weboptimizer test:browser",
|
|
47
47
|
"test:coverage": "yarn clear && weboptimizer test:coverage",
|
|
48
|
-
"test:coverage:report": "yarn clear && weboptimizer test:coverage:report
|
|
49
|
-
"update": "yarn version
|
|
48
|
+
"test:coverage:report": "yarn clear && weboptimizer test:coverage:report",
|
|
49
|
+
"update": "yarn version patch && yarn npm publish",
|
|
50
50
|
"update:documentation": "documentation-website",
|
|
51
51
|
"watch": "weboptimizer build --watch"
|
|
52
52
|
},
|
|
53
53
|
"runkitExample": "require('@babel/runtime/package.json')\n\nglobalThis.window = globalThis\n\nconst {useMemorizedValue} = require('react-generic-tools')\n\nconst value = useMemorizedValue({date: 'content'})",
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@babel/eslint-parser": "
|
|
56
|
-
"@babel/preset-react": "
|
|
57
|
-
"@
|
|
58
|
-
"@types/
|
|
59
|
-
"@types/
|
|
60
|
-
"@types/react
|
|
61
|
-
"@types/
|
|
62
|
-
"@
|
|
63
|
-
"@typescript-eslint/
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"eslint
|
|
68
|
-
"eslint-
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"react
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
55
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
56
|
+
"@babel/preset-react": "^7.23.3",
|
|
57
|
+
"@babel/runtime": "^7.24.0",
|
|
58
|
+
"@types/jsdom": "^21.1.6",
|
|
59
|
+
"@types/node": "^20.11.24",
|
|
60
|
+
"@types/react": "^18.2.61",
|
|
61
|
+
"@types/react-dom": "^18.2.19",
|
|
62
|
+
"@types/webpack-env": "^1.18.4",
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
64
|
+
"@typescript-eslint/parser": "^7.1.0",
|
|
65
|
+
"clientnode": "^3.0.1136",
|
|
66
|
+
"documentation-website": "^1.0.326",
|
|
67
|
+
"eslint": "^8.57.0",
|
|
68
|
+
"eslint-config-google": "^0.14.0",
|
|
69
|
+
"eslint-plugin-jsdoc": "^48.2.0",
|
|
70
|
+
"jest": "^29.7.0",
|
|
71
|
+
"jsdoc": "^4.0.2",
|
|
72
|
+
"react": "^18.2.0",
|
|
73
|
+
"react-dom": "^18.2.0",
|
|
74
|
+
"tslib": "^2.6.2",
|
|
75
|
+
"weboptimizer": "^2.0.1452",
|
|
76
|
+
"webpack-dev-server": "^5.0.2"
|
|
76
77
|
},
|
|
77
78
|
"peerDependencies": {
|
|
78
79
|
"@babel/runtime": "*",
|
|
@@ -104,8 +105,9 @@
|
|
|
104
105
|
}
|
|
105
106
|
},
|
|
106
107
|
"engines": {
|
|
107
|
-
"node": ">=
|
|
108
|
-
"npm": ">=
|
|
108
|
+
"node": ">=20",
|
|
109
|
+
"npm": ">=10",
|
|
110
|
+
"yarn": ">=4"
|
|
109
111
|
},
|
|
110
112
|
"sideEffects": false,
|
|
111
113
|
"documentationWebsite": {
|
|
@@ -144,5 +146,6 @@
|
|
|
144
146
|
}
|
|
145
147
|
}
|
|
146
148
|
}
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
+
},
|
|
150
|
+
"packageManager": "yarn@4.1.0+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb"
|
|
151
|
+
}
|
package/testHelper.js
CHANGED
|
File without changes
|