@cdc/filtered-text 9.22.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/README.md +11 -0
- package/package.json +42 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cdc/filtered-text",
|
|
3
|
+
"version": "9.22.9",
|
|
4
|
+
"description": "React component for adding filtered text on dashboards.",
|
|
5
|
+
"author": "Adam Doe <rsq2@cdc.gov>",
|
|
6
|
+
"homepage": "https://github.com/CDCgov/cdc-open-viz#readme",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"main": "dist/cdcfilteredtext",
|
|
9
|
+
"directories": {
|
|
10
|
+
"lib": "lib",
|
|
11
|
+
"test": "__tests__"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"lib"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/CDCgov/cdc-open-viz.git"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"start": "npx webpack serve --mode development -c ../../webpack.config.js",
|
|
22
|
+
"build": "npx webpack --mode production --env packageName=CdcFilteredText --env folderName=filtered-text -c ../../webpack.config.js",
|
|
23
|
+
"prepublishOnly": "lerna run --scope @cdc/filtered-text build"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/CDCgov/cdc-open-viz/issues"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"react": ">=16.8",
|
|
30
|
+
"react-dom": ">=16"
|
|
31
|
+
},
|
|
32
|
+
"resolutions": {
|
|
33
|
+
"@types/react": "17.x"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@cdc/core": "^9.22.9",
|
|
37
|
+
"html-react-parser": "^2.0.0",
|
|
38
|
+
"papaparse": "^5.3.2",
|
|
39
|
+
"use-debounce": "^8.0.1"
|
|
40
|
+
},
|
|
41
|
+
"gitHead": "90faf22c91ca0062432607e4599598f9e67c848a"
|
|
42
|
+
}
|