@cosla/sensemaking-report-builder 0.1.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.
- package/README.md +117 -0
- package/bin/cli.js +12 -0
- package/build.js +308 -0
- package/data.js +724 -0
- package/package.json +54 -0
- package/src/d3.v7.min.js +2 -0
- package/src/default-translations.json +76 -0
- package/src/fonts/noto-sans-v42-latin-500.txt +1 -0
- package/src/fonts/noto-sans-v42-latin-500.woff2 +0 -0
- package/src/fonts/noto-sans-v42-latin-600.txt +1 -0
- package/src/fonts/noto-sans-v42-latin-600.woff2 +0 -0
- package/src/fonts/noto-sans-v42-latin-700.txt +1 -0
- package/src/fonts/noto-sans-v42-latin-700.woff2 +0 -0
- package/src/fonts/noto-sans-v42-latin-regular.txt +1 -0
- package/src/fonts/noto-sans-v42-latin-regular.woff2 +0 -0
- package/src/index.mustache +304 -0
- package/src/popper.min.js +6 -0
- package/src/print.css +120 -0
- package/src/reset.css +55 -0
- package/src/script.js +1251 -0
- package/src/style.css +1609 -0
- package/src/svg/check.svg +3 -0
- package/src/svg/copy.svg +10 -0
- package/src/svg/exclamation.svg +3 -0
- package/src/svg/eye.svg +10 -0
- package/src/svg/filter.svg +3 -0
- package/src/svg/group.svg +10 -0
- package/src/svg/hamburger.svg +5 -0
- package/src/svg/list.svg +10 -0
- package/src/svg/list_alt.svg +10 -0
- package/src/svg/predict.svg +10 -0
- package/src/svg/reset.svg +3 -0
- package/src/svg/share.svg +10 -0
- package/src/svg/star.svg +10 -0
- package/src/svg/thumbs.svg +10 -0
- package/src/svg/trash.svg +3 -0
- package/src/svg/vote.svg +10 -0
- package/src/svg/x.svg +3 -0
- package/src/tippy-bundle.umd.min.js +2 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cosla/sensemaking-report-builder",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Interactive HTML report builder for Cosla Python sensemaking pipeline outputs.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "build.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"sensemaking-report-builder": "bin/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"build.js",
|
|
13
|
+
"data.js",
|
|
14
|
+
"src/**/*",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"predev": "node bin/cli.js static --outputDir ./output",
|
|
19
|
+
"dev": "node dev.js",
|
|
20
|
+
"static": "node bin/cli.js static",
|
|
21
|
+
"inline": "node bin/cli.js inline",
|
|
22
|
+
"build": "node bin/cli.js inline",
|
|
23
|
+
"preview": "node build.js preview",
|
|
24
|
+
"github": "node build.js github"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/CoslaDigital/sensemaking-tools.git",
|
|
29
|
+
"directory": "src/report_ui"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"sensemaking",
|
|
33
|
+
"report",
|
|
34
|
+
"cosla"
|
|
35
|
+
],
|
|
36
|
+
"author": "CoslaDigital",
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"license": "Apache-2.0",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/CoslaDigital/sensemaking-tools/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/CoslaDigital/sensemaking-tools/tree/python-based/src/report_ui#readme",
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"csvtojson": "^2.0.10",
|
|
47
|
+
"inline-source": "^8.0.3",
|
|
48
|
+
"mustache": "^4.2.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"browser-sync": "^3.0.4",
|
|
52
|
+
"express": "^5.2.1"
|
|
53
|
+
}
|
|
54
|
+
}
|