Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 8, 2024 via pnpm

cssnano 6.0.1

A modular minifier, built on top of the PostCSS ecosystem.
Package summary
Share
4
issues
1
high severity
license
1
3
low severity
license
3
6
licenses
52
MIT
7
BSD-2-Clause
5
ISC
4
other licenses
CC0-1.0
2
CC-BY-4.0
1
BSD-3-Clause
1
Package created
14 Apr 2015
Version published
30 Apr 2023
Maintainers
8
Total deps
68
Direct deps
3
License
MIT

Issues

4

1 high severity issue

high
Recommendation: Read and validate the license terms
via: cssnano-preset-default@6.1.2
Collapse
Expand

3 low severity issues

low
Recommendation: Read and validate the license terms
via: cssnano-preset-default@6.1.2
Recommendation: Read and validate the license terms
via: cssnano-preset-default@6.1.2
Recommendation: Read and validate the license terms
via: cssnano-preset-default@6.1.2
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
52 Packages, Including:
browserslist@4.23.0
caniuse-api@3.0.0
colord@2.9.3
commander@7.2.0
css-tree@2.2.1
css-tree@2.3.1
cssesc@3.0.0
cssnano-preset-default@6.1.2
cssnano-utils@4.0.2
cssnano@6.0.1
csso@5.0.5
dom-serializer@2.0.0
escalade@3.1.2
lilconfig@2.1.0
lodash.memoize@4.1.2
lodash.uniq@4.5.0
nanoid@3.3.7
node-releases@2.0.14
postcss-calc@9.0.1
postcss-colormin@6.1.0
postcss-convert-values@6.1.0
postcss-discard-comments@6.0.2
postcss-discard-duplicates@6.0.3
postcss-discard-empty@6.0.3
postcss-discard-overridden@6.0.2
postcss-merge-longhand@6.0.5
postcss-merge-rules@6.1.1
postcss-minify-font-values@6.1.0
postcss-minify-gradients@6.0.3
postcss-minify-params@6.1.0
postcss-minify-selectors@6.0.4
postcss-normalize-charset@6.0.2
postcss-normalize-display-values@6.0.2
postcss-normalize-positions@6.0.2
postcss-normalize-repeat-style@6.0.2
postcss-normalize-string@6.0.2
postcss-normalize-timing-functions@6.0.2
postcss-normalize-unicode@6.1.0
postcss-normalize-url@6.0.2
postcss-normalize-whitespace@6.0.2
postcss-ordered-values@6.0.2
postcss-reduce-initial@6.1.0
postcss-reduce-transforms@6.0.2
postcss-selector-parser@6.0.16
postcss-svgo@6.0.3
postcss-unique-selectors@6.0.4
postcss-value-parser@4.2.0
postcss@8.4.38
stylehacks@6.1.1
svgo@3.3.0

BSD 2-Clause "Simplified" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
hold-liable
Must
include-copyright
include-license
7 Packages, Including:
css-select@5.1.0
css-what@6.1.0
domelementtype@2.3.0
domhandler@5.0.3
domutils@3.1.0
entities@4.5.0
nth-check@2.1.1

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
5 Packages, Including:
@trysound/sax@0.2.0
boolbase@1.0.0
css-declaration-sorter@7.2.0
electron-to-chromium@1.4.758
picocolors@1.0.0

Creative Commons Zero v1.0 Universal

Public Domain
Not OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
Cannot
Must
2 Packages, Including:
mdn-data@2.0.28
mdn-data@2.0.30

Creative Commons Attribution 4.0 International

Uncategorized
Not OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
Cannot
Must
1 Packages, Including:
caniuse-lite@1.0.30001616

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
source-map-js@1.2.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

3
All Dependencies CSV
ⓘ This is a list of cssnano 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
cssnano-preset-default6.1.224.67 kBMIT
prod
1
3
lilconfig2.1.04.4 kBMIT
prod
postcss8.4.38193.21 kBMIT
prod peer

Visualizations

Frequently Asked Questions

What does cssnano do?

Cssnano is a modular minifier that is built on top of the PostCSS ecosystem. Its main functionality is to help optimize the size of your CSS files. By streamlining your CSS coding, it can significantly reduce the size of your files and, consequently, improve your website’s load times. A faster loading time can lead to better user experience and potentially higher search engine rankings.

How do you use cssnano?

You can start using cssnano by first installing it in your project through npm with the command npm install cssnano. After the installation, you can use it as a plugin in your javascript file. Here is an example of how you can use it:

var cssnano = require('cssnano');

cssnano.process(css, options).then(function (result) {
 // result.css is the minified CSS
});

In this example, css is your CSS string that you want to minify, and options is an object where you can specify the options for the minification process.

Where are the cssnano docs?

The official cssnano documentation can be found on its website at http://cssnano.co. For additional information, you can also visit their repository on GitHub at https://github.com/cssnano/cssnano. The documentation provides a comprehensive guide on how to use cssnano, as well as detailed explanations about its options and features.