Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bukinoshita/anderson
Checks your node dependencies for contraband licenses
https://github.com/bukinoshita/anderson
anderson checker contraband javascript license nodejs
Last synced: 16 days ago
JSON representation
Checks your node dependencies for contraband licenses
- Host: GitHub
- URL: https://github.com/bukinoshita/anderson
- Owner: bukinoshita
- License: mit
- Created: 2017-06-25T16:57:29.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-04T04:35:59.000Z (over 5 years ago)
- Last Synced: 2024-12-01T05:06:03.235Z (about 1 month ago)
- Topics: anderson, checker, contraband, javascript, license, nodejs
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# anderson [![Build Status](https://travis-ci.org/bukinoshita/anderson.svg?branch=master)](https://travis-ci.org/bukinoshita/anderson)
> Checks your node dependencies for contraband licenses
## Install
```
$ npm install --save anderson
```## Usage
```js
const anderson = require('anderson')await anderson()
/*
[{
name: 'chalk',
version: '^2.0.1',
contraband: false,
license: 'MIT'
},
{
name: 'log-symbols',
version: '^1.0.2',
contraband: false,
license: 'MIT'
},
{
name: 'meow',
version: '^3.7.0',
contraband: false,
license: 'MIT'
}]
*/
```_You need to add a `.anderson.yml` file in your project, check example [here](https://github.com/bukinoshita/anderson/blob/master/.anderson.yml)._
_anderson is heavily inspired on [anderson](https://github.com/contraband/anderson)._
## API
### anderson()
returns a `promise`
## Related
- [anderson-cli](https://github.com/bukinoshita/anderson-cli) — CLI of this module
## License
MIT © [Bu Kinoshita](https://bukinoshita.io)