Socket
Socket
Sign inDemoInstall

css-functions-list

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-functions-list - npm Package Compare versions

Comparing version 2.0.0 to 3.0.0

15

CHANGELOG.md

@@ -5,2 +5,12 @@ # Changelog

## [3.0.0][] - 2022-02-03
### Changed
- **Breaking**: Only Node >= 12.22 is supported
### Added
- New additions to list
## [2.0.0][] - 2021-09-02

@@ -12,3 +22,6 @@

[unreleased]: https://github.com/niksy/css-functions-list/compare/v2.0.0...HEAD
<!-- prettier-ignore-start -->
[2.0.0]: https://github.com/niksy/css-functions-list/tree/v2.0.0
[unreleased]: https://github.com/niksy/css-functions-list/compare/v3.0.0...HEAD
[3.0.0]: https://github.com/niksy/css-functions-list/tree/v3.0.0

20

cjs/index.json

@@ -44,2 +44,3 @@ [

"lab",
"layer",
"lch",

@@ -67,4 +68,3 @@ "leader",

"repeat",
"repeat-conic-gradiant",
"repeating-linear-gradiant",
"repeating-conic-gradient",
"repeating-linear-gradient",

@@ -164,2 +164,3 @@ "repeating-radial-gradient",

"-webkit-lab",
"-webkit-layer",
"-webkit-lch",

@@ -187,4 +188,3 @@ "-webkit-leader",

"-webkit-repeat",
"-webkit-repeat-conic-gradiant",
"-webkit-repeating-linear-gradiant",
"-webkit-repeating-conic-gradient",
"-webkit-repeating-linear-gradient",

@@ -284,2 +284,3 @@ "-webkit-repeating-radial-gradient",

"-moz-lab",
"-moz-layer",
"-moz-lch",

@@ -307,4 +308,3 @@ "-moz-leader",

"-moz-repeat",
"-moz-repeat-conic-gradiant",
"-moz-repeating-linear-gradiant",
"-moz-repeating-conic-gradient",
"-moz-repeating-linear-gradient",

@@ -404,2 +404,3 @@ "-moz-repeating-radial-gradient",

"-o-lab",
"-o-layer",
"-o-lch",

@@ -427,4 +428,3 @@ "-o-leader",

"-o-repeat",
"-o-repeat-conic-gradiant",
"-o-repeating-linear-gradiant",
"-o-repeating-conic-gradient",
"-o-repeating-linear-gradient",

@@ -524,2 +524,3 @@ "-o-repeating-radial-gradient",

"-ms-lab",
"-ms-layer",
"-ms-lch",

@@ -547,4 +548,3 @@ "-ms-leader",

"-ms-repeat",
"-ms-repeat-conic-gradiant",
"-ms-repeating-linear-gradiant",
"-ms-repeating-conic-gradient",
"-ms-repeating-linear-gradient",

@@ -551,0 +551,0 @@ "-ms-repeating-radial-gradient",

@@ -44,2 +44,3 @@ [

"lab",
"layer",
"lch",

@@ -67,4 +68,3 @@ "leader",

"repeat",
"repeat-conic-gradiant",
"repeating-linear-gradiant",
"repeating-conic-gradient",
"repeating-linear-gradient",

@@ -164,2 +164,3 @@ "repeating-radial-gradient",

"-webkit-lab",
"-webkit-layer",
"-webkit-lch",

@@ -187,4 +188,3 @@ "-webkit-leader",

"-webkit-repeat",
"-webkit-repeat-conic-gradiant",
"-webkit-repeating-linear-gradiant",
"-webkit-repeating-conic-gradient",
"-webkit-repeating-linear-gradient",

@@ -284,2 +284,3 @@ "-webkit-repeating-radial-gradient",

"-moz-lab",
"-moz-layer",
"-moz-lch",

@@ -307,4 +308,3 @@ "-moz-leader",

"-moz-repeat",
"-moz-repeat-conic-gradiant",
"-moz-repeating-linear-gradiant",
"-moz-repeating-conic-gradient",
"-moz-repeating-linear-gradient",

@@ -404,2 +404,3 @@ "-moz-repeating-radial-gradient",

"-o-lab",
"-o-layer",
"-o-lch",

@@ -427,4 +428,3 @@ "-o-leader",

"-o-repeat",
"-o-repeat-conic-gradiant",
"-o-repeating-linear-gradiant",
"-o-repeating-conic-gradient",
"-o-repeating-linear-gradient",

@@ -524,2 +524,3 @@ "-o-repeating-radial-gradient",

"-ms-lab",
"-ms-layer",
"-ms-lch",

@@ -547,4 +548,3 @@ "-ms-leader",

"-ms-repeat",
"-ms-repeat-conic-gradiant",
"-ms-repeating-linear-gradiant",
"-ms-repeating-conic-gradient",
"-ms-repeating-linear-gradient",

@@ -551,0 +551,0 @@ "-ms-repeating-radial-gradient",

{
"name": "css-functions-list",
"version": "2.0.0",
"version": "3.0.0",
"description": "List of standard and browser specific CSS functions.",

@@ -35,15 +35,16 @@ "license": "MIT",

"release": "np --no-release-draft",
"version": "if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi",
"version": "if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi",
"postpublish": "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog",
"lint": "eslint '{index,lib/**/*,test/**/*,generate-list}.js'",
"test": "npm run lint && mocha --require esm 'test/**/*.js'",
"test": "mocha --require esm 'test/**/*.js'",
"test:watch": "npm test -- --watch",
"build": "rollup --config rollup.config.js",
"module-check": "node -e 'require(\"css-functions-list\");' && node --input-type=module -e 'import \"css-functions-list\";'",
"prepublishOnly": "npm run build && npm run lint:types && npm run module-check",
"lint:types": "tsc"
"prepublishOnly": "npm run build",
"lint:types": "tsc",
"prerelease": "npm run lint && npm run lint:types && npm run build && npm run module-check"
},
"devDependencies": {
"@types/jsdom": "^16.2.13",
"@types/mocha": "^8.2.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.3.0",

@@ -53,12 +54,6 @@ "@types/node-fetch": "^2.5.12",

"cpy": "^8.1.2",
"eslint": "^7.31.0",
"eslint-config-niksy": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-nitpick": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^33.3.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unicorn": "^31.0.0",
"eslint-plugin-prettier": "^4.0.0",
"esm": "^3.0.51",

@@ -71,5 +66,5 @@ "execa": "^5.1.1",

"lint-staged": "^10.4.2",
"mocha": "^8.2.0",
"np": "^6.5.0",
"prettier": "^2.1.2",
"mocha": "^8.4.0",
"np": "^7.6.0",
"prettier": "^2.4.0",
"rollup": "^2.32.1",

@@ -81,3 +76,3 @@ "typescript": "^4.3.5",

"engines": {
"node": ">=10"
"node": ">=12.22"
},

@@ -84,0 +79,0 @@ "keywords": [

@@ -61,5 +61,5 @@ # css-functions-list

[ci]: https://travis-ci.com/niksy/css-functions-list
[ci-img]: https://travis-ci.com/niksy/css-functions-list.svg?branch=master
[ci]: https://github.com/niksy/css-functions-list/actions?query=workflow%3ACI
[ci-img]: https://github.com/niksy/css-functions-list/workflows/CI/badge.svg?branch=master
<!-- prettier-ignore-end -->
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc