json-colorizer
Advanced tools
Comparing version 2.1.2 to 2.1.3
{ | ||
"name": "json-colorizer", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "A library to format JSON with colors for display in the console", | ||
@@ -5,0 +5,0 @@ "main": "src/lib/index.js", |
@@ -10,3 +10,3 @@ const tokenTypes = [ | ||
{ regex: /^"(?:\\.|[^"\\])*"/, tokenType: 'STRING_LITERAL' }, | ||
{ regex: /^true|false/, tokenType: 'BOOLEAN_LITERAL' }, | ||
{ regex: /^true|^false/, tokenType: 'BOOLEAN_LITERAL' }, | ||
{ regex: /^null/, tokenType: 'NULL_LITERAL' } | ||
@@ -13,0 +13,0 @@ ]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31964