@gip-recia/js-tree
Advanced tools
+3
-2
| { | ||
| "root": true, | ||
| "extends": ["eslint:recommended"], | ||
| "parser": "babel-eslint", | ||
| "parser": "@babel/eslint-parser", | ||
| "globals": { | ||
@@ -9,3 +9,4 @@ "chai": "readonly" | ||
| "parserOptions": { | ||
| "sourceType": "module" | ||
| "sourceType": "module", | ||
| "requireConfigFile": false | ||
| }, | ||
@@ -12,0 +13,0 @@ "env": { |
+1
-1
@@ -11,3 +11,3 @@ <!DOCTYPE html> | ||
| rel="stylesheet" | ||
| href="../node_modules/@fortawesome/fontawesome-free/css/solid.css" /> | ||
| href="../node_modules/@fortawesome/fontawesome-free/css/all.css" /> | ||
| <script type="module" src="./src/js-tree.js"></script> | ||
@@ -14,0 +14,0 @@ </head> |
+27
-26
| { | ||
| "name": "@gip-recia/js-tree", | ||
| "version": "0.0.12", | ||
| "version": "0.0.13", | ||
| "description": "Js Tree", | ||
@@ -34,31 +34,32 @@ "main": "src/js-tree.js", | ||
| "dependencies": { | ||
| "lit": "^2.2.0" | ||
| "lit": "2.2.4" | ||
| }, | ||
| "devDependencies": { | ||
| "@custom-elements-manifest/analyzer": "^0.5.3", | ||
| "@esm-bundle/chai": "^4.1.5", | ||
| "@fortawesome/fontawesome-free": "^5.15.4", | ||
| "@open-wc/testing": "^3.0.0-next.1", | ||
| "@open-wc/testing-karma": "^4.0.9", | ||
| "@rollup/plugin-node-resolve": "^13.1.3", | ||
| "@types/mocha": "^9.0.0", | ||
| "@web/dev-server": "^0.1.22", | ||
| "@web/dev-server-legacy": "^0.1.4", | ||
| "@web/test-runner": "^0.13.16", | ||
| "@web/test-runner-mocha": "^0.7.4", | ||
| "@web/test-runner-playwright": "^0.8.4", | ||
| "@webcomponents/webcomponentsjs": "^2.6.0", | ||
| "babel-eslint": "^10.1.0", | ||
| "deepmerge": "^4.2.2", | ||
| "eslint": "^7.32.0", | ||
| "lit-analyzer": "^1.2.1", | ||
| "mocha": "^9.1.1", | ||
| "prettier": "^2.3.2", | ||
| "rollup": "^2.70.1", | ||
| "rollup-plugin-minify-html-literals": "^1.2.6", | ||
| "rollup-plugin-summary": "^1.3.0", | ||
| "rollup-plugin-terser": "^7.0.2", | ||
| "rollup-plugin-visualizer": "^5.6.0" | ||
| "@babel/core": "7.17.12", | ||
| "@babel/eslint-parser": "7.17.0", | ||
| "@custom-elements-manifest/analyzer": "0.5.7", | ||
| "@esm-bundle/chai": "4.3.4-fix.0", | ||
| "@fortawesome/fontawesome-free": "6.1.1", | ||
| "@open-wc/testing": "3.1.5", | ||
| "@open-wc/testing-karma": "4.0.9", | ||
| "@rollup/plugin-node-resolve": "13.3.0", | ||
| "@types/mocha": "9.1.1", | ||
| "@web/dev-server": "0.1.31", | ||
| "@web/dev-server-legacy": "1.0.0", | ||
| "@web/test-runner": "0.13.27", | ||
| "@web/test-runner-mocha": "0.7.5", | ||
| "@web/test-runner-playwright": "0.8.8", | ||
| "@webcomponents/webcomponentsjs": "2.6.0", | ||
| "deepmerge": "4.2.2", | ||
| "eslint": "8.15.0", | ||
| "lit-analyzer": "1.2.1", | ||
| "mocha": "10.0.0", | ||
| "prettier": "2.6.2", | ||
| "rollup": "2.73.0", | ||
| "rollup-plugin-minify-html-literals": "1.2.6", | ||
| "rollup-plugin-summary": "1.4.3", | ||
| "rollup-plugin-terser": "7.0.2", | ||
| "rollup-plugin-visualizer": "5.6.0" | ||
| }, | ||
| "customElements": "custom-elements.json" | ||
| } |
+14
-14
@@ -72,3 +72,3 @@ import { css } from 'lit' | ||
| margin: 0px 2px; | ||
| font-family: var(--icon-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-font-weight, 900); | ||
@@ -80,3 +80,3 @@ } | ||
| .item-subtree > div > .icon-indicator { | ||
| font-family: var(--icon-fold-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-fold-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-fold-font-weight, 900); | ||
@@ -88,3 +88,3 @@ } | ||
| .item-active > div > .icon-indicator { | ||
| font-family: var(--icon-unfold-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-unfold-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-unfold-font-weight, 900); | ||
@@ -96,3 +96,3 @@ } | ||
| i.icon-0 { | ||
| font-family: var(--icon-0-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-0-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-0-font-weight, 900); | ||
@@ -104,3 +104,3 @@ } | ||
| i.icon-1 { | ||
| font-family: var(--icon-1-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-1-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-1-font-weight, 900); | ||
@@ -112,3 +112,3 @@ } | ||
| i.icon-2 { | ||
| font-family: var(--icon-2-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-2-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-2-font-weight, 900); | ||
@@ -120,3 +120,3 @@ } | ||
| i.icon-3 { | ||
| font-family: var(--icon-3-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-3-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-3-font-weight, 900); | ||
@@ -128,3 +128,3 @@ } | ||
| i.icon-4 { | ||
| font-family: var(--icon-4-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-4-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-4-font-weight, 900); | ||
@@ -136,3 +136,3 @@ } | ||
| i.icon-5 { | ||
| font-family: var(--icon-5-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-5-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-5-font-weight, 900); | ||
@@ -144,3 +144,3 @@ } | ||
| i.icon-6 { | ||
| font-family: var(--icon-6-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-6-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-6-font-weight, 900); | ||
@@ -152,3 +152,3 @@ } | ||
| i.icon-7 { | ||
| font-family: var(--icon-7-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-7-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-7-font-weight, 900); | ||
@@ -160,3 +160,3 @@ } | ||
| i.icon-8 { | ||
| font-family: var(--icon-8-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-8-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-8-font-weight, 900); | ||
@@ -168,3 +168,3 @@ } | ||
| i.icon-9 { | ||
| font-family: var(--icon-9-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-9-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-9-font-weight, 900); | ||
@@ -176,3 +176,3 @@ } | ||
| i.icon-10 { | ||
| font-family: var(--icon-10-font-family, 'Font Awesome 5 Free'); | ||
| font-family: var(--icon-10-font-family, 'Font Awesome 6 Free'); | ||
| font-weight: var(--icon-10-font-weight, 900); | ||
@@ -179,0 +179,0 @@ } |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 7 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 7 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
49257
0.11%1063
0.09%25
4.17%