add hex-to-hsl to root project dependencies

This commit is contained in:
Ray Elliott 2021-02-23 16:58:02 +00:00
parent c2a8cf27bb
commit 69d163dbf3
5 changed files with 20 additions and 44 deletions

19
package-lock.json generated
View File

@ -5049,6 +5049,20 @@
"integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==",
"dev": true
},
"hex-to-hsl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/hex-to-hsl/-/hex-to-hsl-1.0.2.tgz",
"integrity": "sha1-1cWezgAXhEToIcj8WKQwr8CYMcI=",
"requires": {
"hex-to-rgb": "^1.0.1",
"rgb-to-hsl": "0.0.2"
}
},
"hex-to-rgb": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/hex-to-rgb/-/hex-to-rgb-1.0.1.tgz",
"integrity": "sha1-EAud8SazLydirfhIa+aMZe+O0qQ="
},
"hosted-git-info": {
"version": "2.8.8",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
@ -10791,6 +10805,11 @@
"integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=",
"dev": true
},
"rgb-to-hsl": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/rgb-to-hsl/-/rgb-to-hsl-0.0.2.tgz",
"integrity": "sha1-Nvn8KGN2uQrMRX5pkAW0y0LTUOw="
},
"rgba-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz",

View File

@ -43,6 +43,7 @@
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"hex-to-hsl": "^1.0.2",
"postcss-custom-media": "^8.0.0"
}
}

View File

@ -1,3 +0,0 @@
**NOTE** - breakpoints are not currently included.
Need to evaluate various solutions to breakpoints using postcss.

View File

@ -1,27 +0,0 @@
{
"name": "postcss",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"hex-to-hsl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/hex-to-hsl/-/hex-to-hsl-1.0.2.tgz",
"integrity": "sha1-1cWezgAXhEToIcj8WKQwr8CYMcI=",
"requires": {
"hex-to-rgb": "^1.0.1",
"rgb-to-hsl": "0.0.2"
}
},
"hex-to-rgb": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/hex-to-rgb/-/hex-to-rgb-1.0.1.tgz",
"integrity": "sha1-EAud8SazLydirfhIa+aMZe+O0qQ="
},
"rgb-to-hsl": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/rgb-to-hsl/-/rgb-to-hsl-0.0.2.tgz",
"integrity": "sha1-Nvn8KGN2uQrMRX5pkAW0y0LTUOw="
}
}
}

View File

@ -1,14 +0,0 @@
{
"name": "postcss",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"hex-to-hsl": "^1.0.2"
}
}