mascot-vis 3.1.7 → 3.3.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/.github/workflows/publish.yml +11 -6
- package/README.md +3 -2
- package/dist/mascot-cjs.cjs +2 -0
- package/dist/mascot-esm.js +2 -2
- package/dist/mascot-umd.js +2 -2
- package/package.json +12 -14
- package/dist/mascot-cjs.js +0 -2
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mascot-vis",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Manipulable Semantic Components in Data Visualization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build": "rollup --config rollup.config.
|
|
7
|
+
"build": "rollup --config rollup.config.mjs",
|
|
8
8
|
"start": "python3 -m http.server 8020",
|
|
9
|
-
"watch": "rollup --config rollup.config.dev.
|
|
9
|
+
"watch": "rollup --config rollup.config.dev.mjs --watch",
|
|
10
10
|
"test": "jasmine JASMINE_CONFIG_PATH=tests/unit-tests/jasmine.json JASMINE_BROWSER_CONFIG_PATH=tests/unit-tests/jasmine-browser.json",
|
|
11
11
|
"lint": "npx eslint src"
|
|
12
12
|
},
|
|
@@ -25,12 +25,11 @@
|
|
|
25
25
|
"@types/d3": "^7.4.3",
|
|
26
26
|
"csv-parser": "^3.0.0",
|
|
27
27
|
"d3": "^7.9.0",
|
|
28
|
-
"jsdom": "^22.1.0",
|
|
29
|
-
"pixi.js": "6.0.4",
|
|
30
28
|
"svelte-jsoneditor": "^0.3.58"
|
|
31
29
|
},
|
|
32
30
|
"exports": {
|
|
33
31
|
"import": "./dist/mascot-esm.js",
|
|
32
|
+
"require": "./dist/mascot-cjs.cjs",
|
|
34
33
|
"browser": "./dist/mascot-umd.js",
|
|
35
34
|
"default": "./dist/mascot-umd.js"
|
|
36
35
|
},
|
|
@@ -39,16 +38,15 @@
|
|
|
39
38
|
},
|
|
40
39
|
"homepage": "https://github.com/hdi-umd/Mascot#readme",
|
|
41
40
|
"devDependencies": {
|
|
42
|
-
"
|
|
43
|
-
"@rollup/plugin-
|
|
44
|
-
"@rollup/plugin-
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
41
|
+
"rollup": "^4.16.0",
|
|
42
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
43
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
44
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
45
|
+
"eslint": "^9.1.0",
|
|
46
|
+
"jasmine": "^5.1.0",
|
|
47
|
+
"pixelmatch": "^5.3.0",
|
|
48
48
|
"pngjs": "^7.0.0",
|
|
49
|
-
"puppeteer": "^24.
|
|
50
|
-
"rollup": "^2.56.3",
|
|
51
|
-
"rollup-plugin-dts": "4.2.3",
|
|
49
|
+
"puppeteer": "^24.9.0",
|
|
52
50
|
"rollup-plugin-ignore": "^1.0.10"
|
|
53
51
|
}
|
|
54
52
|
}
|