New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

color-name-lists

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-name-lists - npm Package Compare versions

Comparing version

to
3.8.0

6

lib/descriptions.json

@@ -97,3 +97,9 @@ {

"key": "xkcd"
},
"risograph": {
"title": "Risograph Colors",
"description": "A list of popular colors for Risograph printers. Only includes colors with HEX, Pantone and Z-Type codes.",
"source": "https://github.com/mattdesl/riso-colors",
"key": "risograph"
}
}

5

package.json
{
"name": "color-name-lists",
"version": "3.7.0",
"version": "3.8.0",
"description": "A collection of color name lists",

@@ -30,4 +30,5 @@ "main": "src/index.js",

"path-browserify": "^1.0.1",
"process": "^0.11.10"
"process": "^0.11.10",
"riso-colors": "^1.0.1"
}
}

3

src/index.js

@@ -9,2 +9,4 @@ const fs = require('fs');

const ridgewayList = require('color-standards-and-color-nomenclature/dist/colornames.json');
const risographColors = require('riso-colors');
const hexColorValidation = /^#([0-9A-F]{3}){1,2}$/i;

@@ -55,2 +57,3 @@

lists.ridgway = ridgewayList;
lists.risograph = risographColors;

@@ -57,0 +60,0 @@ jsonFiles.map(file => {

Sorry, the diff of this file is too big to display