# author-webpack-plugin

> A webpack plugin to add author info to your bundles

Latest version **1.0.1** (published 2019-01-26) · ISC license · 0 weekly downloads

## Install

```sh
npm install author-webpack-plugin
pnpm add author-webpack-plugin
yarn add author-webpack-plugin
bun add author-webpack-plugin
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2019-01-26 |
| First published | 2019-01-16 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Unpacked size | 3.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Maintainers | huruji |

## Links

- npm: https://www.npmjs.com/package/author-webpack-plugin
- Repository: https://github.com/huruji/author-webpack-plugin
- Homepage: https://github.com/huruji/author-webpack-plugin#readme
- Issues: https://github.com/huruji/author-webpack-plugin/issues
- npm.io page: https://npm.io/package/author-webpack-plugin

## Dependencies (6)

- [eslint](https://npm.io/package/eslint.md) ^5.7.0
- [pre-commit](https://npm.io/package/pre-commit.md) ^1.2.2
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.12.3
- [eslint-config-airbnb](https://npm.io/package/eslint-config-airbnb.md) ^17.1.0
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.14.0
- [eslint-plugin-jsx-a11y](https://npm.io/package/eslint-plugin-jsx-a11y.md) ^6.1.2

## Recent versions

- 1.0.1 (latest) — 2019-01-26
- 1.0.0 — 2019-01-16

## README

# author-webpack-plugin
A webpack plugin to add author info to your bundles

## How to use

```js
// webpack.config.js

const AuthorWebpackPlugin = require('author-webpack-plugin')

const config = {
  plugins: [
    new AuthorWebpackPlugin({
      author: 'huruji',
      email: 'huruji3@foxmail.com',
      homepage: 'https://github.com/huruji/author-webpack-plugin',
      github: 'https://github.com/huruji'
    })
  ]
}
```

your bundle output:

```js
/*
  @Author: huruji

  @Email: huruji3@foxmail.com

  @Homepage: https://github.com/huruji/author-webpack-plugin

  @Github: https://github.com/huruji

  @Date: Sat Jan 12 2019 23:11:39 GMT+0800 (GMT+08:00)
*/
// your bundle code
```

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