Skip to content

Commit

Permalink
chore(dependencies): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Nov 14, 2019
1 parent 25590b5 commit c3f88f9
Show file tree
Hide file tree
Showing 12 changed files with 4,031 additions and 2,404 deletions.
5 changes: 5 additions & 0 deletions .codeclimate.yml
Expand Up @@ -8,3 +8,8 @@ engines:
ratings:
paths:
- "src/*.js tests/*.mocha.js"
## Exclude test files.
exclude_patterns:
- "dist/"
- "**/node_modules/"
- "tests/*.mocha.js"
17 changes: 0 additions & 17 deletions .eslintrc.js

This file was deleted.

11 changes: 5 additions & 6 deletions .github/CODE_OF_CONDUCT.md
@@ -1,10 +1,9 @@
# Code of Conduct

Be kind, except if i behave like an asshole,
if so, tell me by linking to this file.
Be kind, except if I behave like an asshole, if so, tell me by linking to this
file.

I try hard to automate things so that you cannot
create noises without really willing to do so.
I try hard to document and automate things so that you cannot create noises
without really willing to do so.

This is why i'll just delete issues/comments
making be sad.
This is why I'll just delete issues/comments making be sad.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING
Expand Up @@ -2,7 +2,7 @@ Contributing to this project requires you to be
a gentleman.

By contributing you must agree with publishing your
changes int the same license than the actual code.
changes into the same license that apply to the current code.

You will find the license in the LICENSE file at
the root of this repository.
14 changes: 7 additions & 7 deletions .github/ISSUE_TEMPLATE
Expand Up @@ -10,14 +10,14 @@ Before doing so, there are a few checks to do in
Beware that you also can create a pull request
if you know how to solve the issue.

Finally scroll down if you asking for a feature ;)
Finally scroll down if you are asking for a new feature ;)

-->

I'm a gentledev i:
I'm a gentledev I:
- [ ] fully read the README recently
- [ ] searched for existing issues
- [ ] checked i'm up to date with the latest version of the project
- [ ] checked I'm up to date with the latest version of the project

### Expected behavior

Expand All @@ -35,16 +35,16 @@ I'm a gentledev i:
```
<paste here>
```
If the result is lower than 6.9.5, there is
poor chances i even have a look to it. Please,
If the result is lower than 8.12.0, there is
poor chances I even have a look to it. Please,
use the last [NodeJS LTS version](https://nodejs.org/en/).

## Feature request
<!--

If you think a feature need to be added, your suggestions
are welcome. Beware though that:
- I try to keep my module simple so please ensure the requested
- I try to keep my modules simple so please ensure the requested
feature is really related to this module. If not, you may
instead create a module that augment/work with this one,
- I am not your employee so keep calm and be aware that your
Expand All @@ -56,4 +56,4 @@ If you think a feature need to be added, your suggestions

### Use cases

- [ ] I will/have implement the feature
- [ ] I will/did implement the feature
9 changes: 5 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE
Expand Up @@ -20,7 +20,8 @@ Fixes #
- [ ] I made some tests for my changes
- [ ] I added my name in the
[contributors](https://docs.npmjs.com/files/package.json#people-fields-author-contributors)
field of the package.json file
field of the `package.json` file. Beware to use the same format than for the author field
for the entries so that you'll get a mention in the `README.md` with a link to your website.

### License
To get your contribution merged, you must check the following.
Expand All @@ -34,9 +35,9 @@ If you already maintain several NPM modules / NodeJS
project, making significant changes on one of my modules
automatically legitimates you as a core developer.

This is because i could die or even not give a shit to
this project someday and i don't want people to get
stuck.
This is because I could die or even not give a shit to
this project someday and I don't want people to get
stuck in such cases.

If you want to help, fill the following with to get
GitHub/NPM r/w access.
Expand Down
93 changes: 89 additions & 4 deletions .gitignore
Expand Up @@ -2,15 +2,36 @@
# module. Do not change it elsewhere, changes would
# be overridden.

# Created by https://www.gitignore.io/api/osx,node,linux

### Linux ###
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
Expand All @@ -21,24 +42,88 @@ coverage
# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless

### OSX ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


# End of https://www.gitignore.io/api/osx,node,linux

# Coveralls key
.coveralls.yml
7 changes: 0 additions & 7 deletions .prettierrc.js

This file was deleted.

5 changes: 2 additions & 3 deletions .travis.yml
Expand Up @@ -4,8 +4,7 @@

language: node_js
node_js:
- 6
- 6.9.5
- 7
- 8
- 8.12.0
- 9
- 10
10 changes: 7 additions & 3 deletions README.md
Expand Up @@ -7,13 +7,14 @@
# bufferstreams
> Abstract streams to deal with the whole buffered contents.
[![NPM version](https://badge.fury.io/js/bufferstreams.svg)](https://npmjs.org/package/bufferstreams)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/nfroidure/bufferstreams/blob/master/LICENSE)
[![Build status](https://secure.travis-ci.org/nfroidure/bufferstreams.svg)](https://travis-ci.org/nfroidure/bufferstreams)
[![Coverage Status](https://coveralls.io/repos/nfroidure/bufferstreams/badge.svg?branch=master)](https://coveralls.io/r/nfroidure/bufferstreams?branch=master)
[![NPM version](https://badge.fury.io/js/bufferstreams.svg)](https://npmjs.org/package/bufferstreams)
[![Dependency Status](https://david-dm.org/nfroidure/bufferstreams.svg)](https://david-dm.org/nfroidure/bufferstreams)
[![devDependency Status](https://david-dm.org/nfroidure/bufferstreams/dev-status.svg)](https://david-dm.org/nfroidure/bufferstreams#info=devDependencies)
[![Coverage Status](https://coveralls.io/repos/nfroidure/bufferstreams/badge.svg?branch=master)](https://coveralls.io/r/nfroidure/bufferstreams?branch=master)
[![Package Quality](http://npm.packagequality.com/shield/bufferstreams.svg)](http://packagequality.com/#?package=bufferstreams)
[![Code Climate](https://codeclimate.com/github/nfroidure/bufferstreams.svg)](https://codeclimate.com/github/nfroidure/bufferstreams)
[![Dependency Status](https://dependencyci.com/github/nfroidure/bufferstreams/badge)](https://dependencyci.com/github/nfroidure/bufferstreams)


[//]: # (::contents:start)
Expand Down Expand Up @@ -98,5 +99,8 @@ Feel free to pull your code if you agree with publishing it under the MIT licens

[//]: # (::contents:end)

# Authors
- [Nicolas Froidure](http://insertafter.com/en/index.html)

# License
[MIT](https://github.com/nfroidure/bufferstreams/blob/master/LICENSE)

0 comments on commit c3f88f9

Please sign in to comment.