Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 20, 2024 via pnpm
Package summary
Share
0
issues
5
licenses
12
MIT
3
ISC
1
Apache-2.0
2
other licenses
BSD-3-Clause
1
0BSD
1
Package created
23 Jan 2011
Version published
5 Aug 2023
Maintainers
5
Total deps
18
Direct deps
10
License
Apache-2.0

Issues

0
This package has no issues

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
12 Packages, Including:
copy-anything@2.0.6
errno@0.1.8
iconv-lite@0.6.3
image-size@0.5.5
is-what@3.14.1
make-dir@2.1.0
mime@1.6.0
needle@3.3.1
parse-node-version@1.0.1
pify@4.0.1
prr@1.0.1
safer-buffer@2.1.2

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
3 Packages, Including:
graceful-fs@4.2.11
sax@1.3.0
semver@5.7.2

Apache License 2.0

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
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
less@4.2.0

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@0.6.1

BSD Zero Clause 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
include-copyright
include-license
include-original
Cannot
hold-liable
Must
1 Packages, Including:
tslib@2.6.2
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

10
All Dependencies CSV
β“˜ This is a list of less 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
copy-anything2.0.64.04 kBMIT
prod
errno0.1.86.17 kBMIT
prod optional
graceful-fs4.2.119.57 kBISC
prod optional
image-size0.5.56.81 kBMIT
prod optional
make-dir2.1.03.5 kBMIT
prod optional
mime1.6.015.32 kBMIT
prod optional
needle3.3.167.92 kBMIT
prod optional
parse-node-version1.0.12.18 kBMIT
prod
source-map0.6.1194.96 kBBSD-3-Clause
prod optional
tslib2.6.215.59 kB0BSD
prod

Visualizations

Frequently Asked Questions

What does less do?

Less is a dynamic preprocessor style sheet language that allows developers to make their CSS more maintainable, themeable, and extendable. This dynamic stylesheet language allows you to use features such as variables, mixins, functions and operations to help produce more efficient CSS. It is a JavaScript plugin that extends CSS with dynamic behavior. It is officially maintained and stable, ensuring a reliable and smooth performance for all your development tasks.

How do you use less?

To use Less, you first need to install it in your project. Using Node.js' package manager npm, you can easily install Less. Here is an example of how to incorporate Less into your project:

  1. Install Less using npm:
npm install less
  1. Create a Less file (e.g., styles.less) and write some Less code:
@color: #4D926F;

#header {
  color: @color;
}
  1. Compile your Less file into CSS. From the command line, you can run:
lessc styles.less styles.css
  1. Now, you can use the generated CSS file (styles.css) in your HTML file:
<link rel="stylesheet" type="text/css" href="styles.css">

Where are the less docs?

The complete documentation and additional resources for Less can be found on its official website http://lesscss.org. These comprehensive documents cover everything from getting started, the different features and functionalities of Less, to more advanced topics to help you make the most of this powerful tool.