# postcss-easings

> PostCSS plugin to replace easing names to cubic-bezier()

Latest version **4.0.0** (published 2023-07-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install postcss-easings
pnpm add postcss-easings
yarn add postcss-easings
bun add postcss-easings
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 4.0.0 |
| Published | 2023-07-06 |
| First published | 2015-02-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=16.0 |
| Dependencies | 1 |
| Unpacked size | 5.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 155 |
| Author | Andrey Sitnik |
| Maintainers | ai |
| Keywords | postcss, css, postcss-plugin, easings, ease |

## Links

- npm: https://www.npmjs.com/package/postcss-easings
- Repository: https://github.com/postcss/postcss-easings
- Homepage: https://github.com/postcss/postcss-easings#readme
- Issues: https://github.com/postcss/postcss-easings/issues
- Funding: https://opencollective.com/postcss/
- npm.io page: https://npm.io/package/postcss-easings

## Dependencies (1)

- [postcss-value-parser](https://npm.io/package/postcss-value-parser.md) ^4.2.0

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 4.0.0 (latest) — 2023-07-06
- 3.0.1 — 2020-09-27
- 3.0.0 — 2020-09-15
- 2.0.0 — 2018-09-07
- 1.0.1 — 2017-11-05
- 1.0.0 — 2017-05-08
- 0.3.0 — 2015-08-23
- 0.2.0 — 2015-05-05
- 0.1.0 — 2015-02-07

## README

# PostCSS Easings

<img align="right" width="135" height="95"
     title="Philosopher’s stone, logo of PostCSS"
     src="https://postcss.org/logo-leftp.svg">

[PostCSS] plugin to replace easing name from [easings.net] to `cubic-bezier()`.

[easings.net]: http://easings.net/
[PostCSS]:     https://github.com/postcss/postcss

```css
.snake {
  transition: all 600ms ease-in-sine;
}
.camel {
  transition: all 600ms easeInSine;
}
```

```css
.snake {
  transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
.camel {
  transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
```

<a href="https://evilmartians.com/?utm_source=postcss-easings">
  <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
       alt="Sponsored by Evil Martians" width="236" height="54">
</a>


## Docs
Read full docs **[here](https://github.com/postcss/postcss-easings#readme)**.

---
_Source: https://npm.io/package/postcss-easings · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
