shinnn

Results 7 issues of shinnn

- [ ] update screencast GIF - [ ] more detailed error messages (if needed)

- I updated dependencies and devDependencies of this project, and update expected encoding result of the test. - [grunt.util._](http://gruntjs.com/api/grunt.util#grunt.util._) and [grunt.util.async](http://gruntjs.com/api/grunt.util#grunt.util.async) are [deprecated](http://gruntjs.com/blog/2013-11-21-grunt-0.4.2-released). So I replaced them with other solutions.

For now, _domvas.js_ invokes strict mode for the entire script. It will causes unintended behavior when _domvas.js_ is concatenated or minified with other non-strict-mode scripts into a single file. So...

Currently this repo has some unreviewed (and important) PRs and open issues, but hasn't been updated for a long time. @deoxxa I'd happily maintain this repo if you want to...

### Before ```js const {minify} = require('html-minifier'); minify('', {collapseBooleanAttributes: true}); //=> '' ``` ### After ```js const {minify} = require('html-minifier'); minify('', {collapseBooleanAttributes: true}); //=> '' ``` ------ ref. specification of...

npm v3 tries to dedupe the dependencies by default, and keeping dependencies up-to-date helps better deduplication. Actually, for exmaple, [React depends on `object-assign` v4.1.x](https://github.com/facebook/react/blob/c9504d99a55d544b38ad452a776250e3ea6ee68c/packages/react/package.json#L28) but [this plugin still uses pinned...