@rhc-shared-components/form-select-component 0.0.0

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.
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@rhc-shared-components/form-select-component",
3
+ "version": "0.0.0",
4
+ "description": "project description",
5
+ "author": "redhatofficial",
6
+ "license": "MIT",
7
+ "repository": "https://gitlab.cee.redhat.com/customer-platform/rhc-shared-components/",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.modern.js",
10
+ "source": "src/index.tsx",
11
+ "engines": {
12
+ "node": ">=10"
13
+ },
14
+ "scripts": {
15
+ "build": "microbundle --css inline --no-sourcemap --no-compress --format modern,cjs --jsx React.createElement",
16
+ "start": "microbundle watch --css inline --no-compress --format modern,cjs --jsx React.createElement",
17
+ "clean": "rimraf dist",
18
+ "prepare": "run-s clean build",
19
+ "test": "run-s test:unit test:lint test:build",
20
+ "test:build": "run-s build",
21
+ "test:lint": "eslint .",
22
+ "test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
23
+ "test:watch": "react-scripts test --env=jsdom",
24
+ "predeploy": "cd example && yarn install && yarn run build"
25
+ },
26
+ "peerDependencies": {
27
+ "@patternfly/react-core": ">=4.101.3",
28
+ "formik": ">=2.1.4",
29
+ "react": ">=16.13.1",
30
+ "react-dom": ">=16.13.1"
31
+ },
32
+ "devDependencies": {
33
+ "@testing-library/jest-dom": "^4.2.4",
34
+ "@testing-library/react": "^9.5.0",
35
+ "@testing-library/user-event": "^7.2.1",
36
+ "@types/jest": "^25.1.4",
37
+ "@types/node": "^12.12.38",
38
+ "@types/react": "^16.9.27",
39
+ "@types/react-dom": "^16.9.7",
40
+ "@typescript-eslint/eslint-plugin": "^2.26.0",
41
+ "@typescript-eslint/parser": "^2.26.0",
42
+ "babel-eslint": "^10.0.3",
43
+ "cross-env": "^7.0.2",
44
+ "eslint": "^6.8.0",
45
+ "eslint-config-prettier": "^6.7.0",
46
+ "eslint-config-standard": "^14.1.0",
47
+ "eslint-config-standard-react": "^9.2.0",
48
+ "eslint-plugin-import": "^2.18.2",
49
+ "eslint-plugin-node": "^11.0.0",
50
+ "eslint-plugin-prettier": "^3.1.1",
51
+ "eslint-plugin-promise": "^4.2.1",
52
+ "eslint-plugin-react": "^7.17.0",
53
+ "eslint-plugin-standard": "^4.0.1",
54
+ "microbundle": "^0.13.3",
55
+ "node-sass": "^4.0.0",
56
+ "npm-run-all": "^4.1.5",
57
+ "prettier": "^2.0.4",
58
+ "react": "^16.13.1",
59
+ "react-dom": "^16.13.1",
60
+ "react-scripts": "^3.4.1",
61
+ "rimraf": "^3.0.2",
62
+ "typescript": "^3.7.5"
63
+ },
64
+ "dependencies": {
65
+ "@patternfly/react-core": "^4.101.3",
66
+ "@rhc-shared-components/form-group-container": "^0.2.9",
67
+ "formik": "^2.1.4",
68
+ "react": "^16.13.1",
69
+ "react-dom": "^16.13.1"
70
+ },
71
+ "files": [
72
+ "dist"
73
+ ],
74
+ "publishConfig": {
75
+ "access": "public"
76
+ }
77
+ }