Comparing version 4.2.2 to 5.0.0
25
index.js
@@ -6,3 +6,2 @@ /** | ||
* @module remark | ||
* @version 4.2.2 | ||
* @fileoverview Markdown processor powered by plugins. | ||
@@ -15,22 +14,8 @@ */ | ||
/* | ||
* Dependencies. | ||
*/ | ||
/* Dependencies. */ | ||
var unified = require('unified'); | ||
var Parser = require('./lib/parse.js'); | ||
var Compiler = require('./lib/stringify.js'); | ||
var escape = require('./lib/escape.json'); | ||
var parse = require('remark-parse'); | ||
var stringify = require('remark-stringify'); | ||
/* | ||
* Exports. | ||
*/ | ||
module.exports = unified({ | ||
'name': 'mdast', | ||
'Parser': Parser, | ||
'Compiler': Compiler, | ||
'data': { | ||
'escape': escape | ||
} | ||
}); | ||
/* Expose. */ | ||
module.exports = unified().use(parse).use(stringify).abstract(); |
111
package.json
{ | ||
"name": "remark", | ||
"version": "4.2.2", | ||
"version": "5.0.0", | ||
"description": "Markdown processor powered by plugins", | ||
@@ -8,120 +8,31 @@ "license": "MIT", | ||
"markdown", | ||
"markup", | ||
"abstract", | ||
"syntax", | ||
"tree", | ||
"json", | ||
"ast", | ||
"parse", | ||
"stringify", | ||
"bin", | ||
"cli" | ||
"process" | ||
], | ||
"dependencies": { | ||
"camelcase": "^2.0.0", | ||
"ccount": "^1.0.0", | ||
"chalk": "^1.0.0", | ||
"chokidar": "^1.0.5", | ||
"collapse-white-space": "^1.0.0", | ||
"commander": "^2.0.0", | ||
"concat-stream": "^1.0.0", | ||
"debug": "^2.0.0", | ||
"elegant-spinner": "^1.0.0", | ||
"extend": "^3.0.0", | ||
"glob": "^7.0.0", | ||
"globby": "^4.0.0", | ||
"log-update": "^1.0.1", | ||
"longest-streak": "^1.0.0", | ||
"markdown-table": "^0.4.0", | ||
"minimatch": "^3.0.0", | ||
"npm-prefix": "^1.0.1", | ||
"parse-entities": "^1.0.0", | ||
"repeat-string": "^1.5.0", | ||
"stringify-entities": "^1.0.0", | ||
"to-vfile": "^1.0.0", | ||
"trim": "^0.0.1", | ||
"trim-trailing-lines": "^1.0.0", | ||
"unified": "^3.0.0", | ||
"unist-util-remove-position": "^1.0.0", | ||
"user-home": "^2.0.0", | ||
"vfile": "^1.1.0", | ||
"vfile-find-down": "^1.0.0", | ||
"vfile-find-up": "^1.0.0", | ||
"vfile-location": "^2.0.0", | ||
"vfile-reporter": "^1.5.0", | ||
"ware": "^1.3.0" | ||
"remark-parse": "^1.0.0", | ||
"remark-stringify": "^1.0.0", | ||
"unified": "^4.1.1" | ||
}, | ||
"homepage": "http://remark.js.org", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/wooorm/remark.git" | ||
}, | ||
"repository": "https://github.com/wooorm/remark/tree/master/packages/remark", | ||
"bugs": "https://github.com/wooorm/remark/issues", | ||
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)", | ||
"contributors": [ | ||
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)", | ||
"Eugene Sharygin <eush77@gmail.com>", | ||
"YJ Yang <chcokr@gmail.com>" | ||
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)" | ||
], | ||
"bin": { | ||
"remark": "bin/remark" | ||
}, | ||
"directories": { | ||
"man": "./man" | ||
}, | ||
"engines": { | ||
"node": ">=0.10.0" | ||
"node": ">=0.11.0" | ||
}, | ||
"files": [ | ||
"index.js", | ||
"lib", | ||
"man", | ||
"bin" | ||
"cli.js" | ||
], | ||
"devDependencies": { | ||
"bail": "^1.0.0", | ||
"browserify": "^13.0.0", | ||
"clone": "^1.0.1", | ||
"escodegen": "^1.7.0", | ||
"eslint": "^2.0.0", | ||
"esmangle": "^1.0.0", | ||
"esprima": "^2.6.0", | ||
"istanbul": "^0.4.0", | ||
"jscs": "^2.0.0", | ||
"jscs-jsdoc": "^1.0.0", | ||
"mocha": "^2.0.0", | ||
"remark-comment-config": "^3.0.0", | ||
"remark-github": "^4.0.1", | ||
"remark-html": "^3.0.0", | ||
"remark-license": "^2.0.0", | ||
"remark-lint": "^3.0.0", | ||
"remark-man": "^3.0.0", | ||
"remark-retext": "^1.0.1", | ||
"remark-toc": "^3.0.0", | ||
"remark-usage": "^3.0.0", | ||
"remark-validate-links": "^3.0.0", | ||
"remark-yaml-config": "^3.0.0", | ||
"retext": "^2.0.0", | ||
"retext-equality": "^2.2.1", | ||
"retext-profanities": "^1.1.0", | ||
"retext-readability": "^1.0.0", | ||
"retext-simplify": "^1.1.0" | ||
}, | ||
"scripts": { | ||
"build-man": "bin/remark doc/*.?.md --config-path .remarkrc-man --quiet", | ||
"build-md": "bin/remark . --quiet --frail", | ||
"build-version": "node script/build-version.js", | ||
"build-options": "node script/build-options.js", | ||
"build-bundle": "node script/build-bundle.js", | ||
"lint-api": "eslint .", | ||
"lint-style": "jscs --reporter inline .", | ||
"lint": "npm run lint-api && npm run lint-style", | ||
"build": "npm run build-version && npm run build-md && npm run build-options && npm run build-man && npm run build-bundle", | ||
"test-api": "mocha --check-leaks test/index.js", | ||
"test-api-extensive": "TEST_EXTENDED=true npm run test-api", | ||
"test-cli": "bash test/cli.sh", | ||
"test-coverage": "istanbul cover _mocha -- -- test/index.js", | ||
"test-travis": "npm run build-md && npm run build-bundle && npm run lint && npm run test-coverage && npm run test-cli", | ||
"test": "npm run build && npm run lint && npm run test-coverage && npm run test-cli" | ||
} | ||
"bin": "cli.js", | ||
"scripts": {} | ||
} |
260
readme.md
@@ -1,40 +0,14 @@ | ||
# ![remark][logo] | ||
# remark [![Build Status][build-badge]][build-status] [![Coverage Status][coverage-badge]][coverage-status] [![Chat][chat-badge]][chat] | ||
[![Build Status][build-badge]][build-status] | ||
[![Coverage Status][coverage-badge]][coverage-status] | ||
[![Inline docs][docs-badge]][docs-status] | ||
[![Chat][chat-badge]][chat] | ||
The [**remark**][remark] processor is a markdown processor powered by | ||
[plug-ins][plugins]. | ||
> **remark** recently changed its name from **mdast**. [Read more about | ||
> what changed and how to migrate »][migrating] | ||
* Interface by [**unified**][unified]; | ||
* [**mdast**][mdast] syntax tree; | ||
* Parses markdown to the tree with [**remark-parse**][parse]; | ||
* [Plug-ins][plugins] transform the tree; | ||
* Compiles the tree to markdown using [**remark-stringify**][stringify]. | ||
**remark** is a markdown processor powered by plugins. Lots of tests. Node, | ||
io.js, and the browser. 100% coverage. | ||
Don’t need the parser? Or the compiler? [That’s OK][unified-usage]. | ||
**remark** is not just another markdown to HTML compiler. It can generate, | ||
and reformat, markdown too. Powered by [plugins][] to do | ||
all kinds of things: [validate your markdown][remark-lint], | ||
[add links for GitHub references][remark-github], or | ||
[add a table of contents][remark-toc]. | ||
The project has both an extensive [JavaScript API][remark-3] for | ||
parsing, modifying, and compiling markdown, and a friendly [Command Line | ||
Interface][remark-1] making it easy to validate, prepare, and compile | ||
markdown in a build step. | ||
## Table of Contents | ||
* [Installation](#installation) | ||
* [Usage](#usage) | ||
* [API](#api) | ||
* [remark.process(value\[, options\]\[, done\])](#remarkprocessvalue-options-done) | ||
* [remark.use(plugin\[, options\])](#remarkuseplugin-options) | ||
* [CLI](#cli) | ||
* [License](#license) | ||
## Installation | ||
@@ -48,186 +22,34 @@ | ||
[Read more about alternative ways to install and use »][install] | ||
## Usage | ||
Load dependencies: | ||
```javascript | ||
```js | ||
var remark = require('remark'); | ||
var lint = require('remark-lint'); | ||
var html = require('remark-html'); | ||
var yamlConfig = require('remark-yaml-config'); | ||
``` | ||
var report = require('vfile-reporter'); | ||
Use plugins: | ||
```javascript | ||
var processor = remark().use(yamlConfig).use(html); | ||
remark().use(lint).use(html).process('## Hello world!', function (err, file) { | ||
console.error(report(file)); | ||
console.log(file.toString()); | ||
}); | ||
``` | ||
Process the document: | ||
```javascript | ||
var doc = processor.process([ | ||
'---', | ||
'remark:', | ||
' commonmark: true', | ||
'---', | ||
'', | ||
'2) Some *emphasis*, **strongness**, and `code`.' | ||
].join('\n')); | ||
``` | ||
Yields: | ||
```html | ||
<ol start="2"> | ||
<li>Some <em>emphasis</em>, <strong>strongness</strong>, and <code>code</code>.</li> | ||
</ol> | ||
``` | ||
```txt | ||
<stdin> | ||
1:1 warning Missing newline character at end of file final-newline | ||
1:1-1:16 warning First heading level should be `1` first-heading-level | ||
1:1-1:16 warning Don’t add a trailing `!` to headings no-heading-punctuation | ||
## API | ||
[**Get Started with the API** »][start-api] | ||
### `remark.process(value[, options][, done])` | ||
Parse a markdown document, apply plugins to it, and compile it into | ||
something else. | ||
**Signatures**: | ||
* `doc = remark.process(value, options?, done?)`. | ||
**Parameters**: | ||
* `value` (`string`) — Markdown document; | ||
* `options` (`Object`) — Settings: | ||
* `gfm` (`boolean`, default: `true`) — See [GitHub Flavoured Markdown](doc/remarksetting.7.md#github-flavoured-markdown); | ||
* `yaml` (`boolean`, default: `true`) — See [YAML](doc/remarksetting.7.md#yaml); | ||
* `commonmark` (`boolean`, default: `false`) — See [CommonMark](doc/remarksetting.7.md#commonmark); | ||
* `footnotes` (`boolean`, default: `false`) — See [Footnotes](doc/remarksetting.7.md#footnotes); | ||
* `pedantic` (`boolean`, default: `false`) — See [Pedantic](doc/remarksetting.7.md#pedantic); | ||
* `breaks` (`boolean`, default: `false`) — See [Breaks](doc/remarksetting.7.md#breaks); | ||
* `entities` (`boolean`, default: `false`) — See [Encoding Entities](doc/remarksetting.7.md#encoding-entities); | ||
* `setext` (`boolean`, default: `false`) — See [Setext Headings](doc/remarksetting.7.md#setext-headings); | ||
* `closeAtx` (`boolean`, default: `false`) — See [Closed ATX Headings](doc/remarksetting.7.md#closed-atx-headings); | ||
* `looseTable` (`boolean`, default: `false`) — See [Loose Tables](doc/remarksetting.7.md#loose-tables); | ||
* `spacedTable` (`boolean`, default: `true`) — See [Spaced Tables](doc/remarksetting.7.md#spaced-tables); | ||
* `fence` (`"~"` or ``"`"``, default: ``"`"``) — See [Fence](doc/remarksetting.7.md#fence); | ||
* `fences` (`boolean`, default: `false`) — See [Fences](doc/remarksetting.7.md#fences); | ||
* `bullet` (`"-"`, `"*"`, or `"+"`, default: `"-"`) — See [List Item Bullets](doc/remarksetting.7.md#list-item-bullets); | ||
* `listItemIndent` (`"tab"`, `"mixed"` or `"1"`, default: `"tab"`) — See [List Item Indent](doc/remarksetting.7.md#list-item-indent); | ||
* `incrementListMarker` (`boolean`, default: `true`) — See [List Marker Increase](doc/remarksetting.7.md#list-marker-increase); | ||
* `rule` (`"-"`, `"*"`, or `"_"`, default: `"*"`) — See [Horizontal Rules](doc/remarksetting.7.md#horizontal-rules); | ||
* `ruleRepetition` (`number`, default: `3`) — See [Horizontal Rules](doc/remarksetting.7.md#horizontal-rules); | ||
* `ruleSpaces` (`boolean`, default `true`) — See [Horizontal Rules](doc/remarksetting.7.md#horizontal-rules); | ||
* `strong` (`"_"`, or `"*"`, default `"*"`) — See [Emphasis Markers](doc/remarksetting.7.md#emphasis-markers); | ||
* `emphasis` (`"_"`, or `"*"`, default `"_"`) — See [Emphasis Markers](doc/remarksetting.7.md#emphasis-markers). | ||
* `position` (`boolean`, default: `true`) — See [Position](doc/remarksetting.7.md#position); | ||
* `done` (`function(Error?, string?)`) — Callback invoked when the output | ||
is generated with either an error, or a result. Only strictly needed when | ||
asynchronous plugins are used. | ||
All options (including the options object itself) can be `null` or `undefined` | ||
to default to their default values. | ||
**Returns**: | ||
`string` or `null`: A document. Formatted in markdown by default, or in | ||
whatever a plugin generates. | ||
The result is `null` if a plugin is asynchronous, in which case the callback | ||
`done` should’ve been passed (do not worry: plugin creators make sure you know | ||
its asynchronous). | ||
### `remark.use(plugin[, options])` | ||
Change the way [`remark`][api] works by using a [`plugin`][plugins]. | ||
**Signatures**: | ||
* `processor = remark.use(plugin, options?)`; | ||
* `processor = remark.use(plugins)`. | ||
**Parameters**: | ||
* `plugin` (`Function`) — A [**Plugin**][plugins]; | ||
* `plugins` (`Array.<Function>`) — A list of [**Plugin**][plugins]s; | ||
* `options` (`Object?`) — Passed to plugin. Specified by its documentation. | ||
**Returns**: | ||
`Object`: an instance of Remark: The returned object functions just like | ||
**remark** (it has the same methods), but caches the `use`d plugins. This | ||
provides the ability to chain `use` calls to use more than one plugin, but | ||
ensures the functioning of the **remark** module does not change for other | ||
dependents. | ||
## CLI | ||
[**Get Started with the CLI** »][start-cli] | ||
Install: | ||
```bash | ||
npm install --global remark | ||
⚠ 3 warnings | ||
<h2>Hello world!</h2> | ||
``` | ||
Use: | ||
## License | ||
```text | ||
Usage: remark [options] <pathspec...> | ||
[MIT][license] © [Titus Wormer][author] | ||
Markdown processor powered by plugins | ||
Options: | ||
-h, --help output usage information | ||
-V, --version output the version number | ||
-o, --output [path] specify output location | ||
-c, --config-path <path> specify configuration location | ||
-i, --ignore-path <path> specify ignore location | ||
-s, --setting <settings> specify settings | ||
-u, --use <plugins> use transform plugin(s) | ||
-e, --ext <extensions> specify extensions | ||
-w, --watch watch for changes and reprocess | ||
-q, --quiet output only warnings and errors | ||
-S, --silent output only errors | ||
-f, --frail exit with 1 on warnings | ||
-t, --tree input and output syntax tree | ||
--file-path <path> specify file path to process as | ||
--tree-out output syntax tree | ||
--tree-in input syntax tree | ||
--no-stdout disable writing to stdout | ||
--no-color disable color in output | ||
--no-rc disable configuration from .remarkrc | ||
--no-ignore disable ignore from .remarkignore | ||
See also: man 1 remark, man 3 remark, | ||
man 3 remarkplugin, man 5 remarkrc, | ||
man 5 remarkignore, man 7 remarksetting, | ||
man 7 remarkconfig, man 7 remarkplugin. | ||
Examples: | ||
# Process `readme.md` | ||
$ remark readme.md -o readme-new.md | ||
# Pass stdin(4) through remark, with settings, to stdout(4) | ||
$ remark --setting "setext: true, bullet: \"*\"" < readme.md > readme-new.md | ||
# Use a plugin (with options) | ||
$ npm install remark-toc | ||
$ remark readme.md --use "toc=heading:\"contents\"" -o | ||
# Rewrite markdown in a directory | ||
$ remark . -o | ||
``` | ||
<!-- Definitions --> | ||
[logo]: https://cdn.rawgit.com/wooorm/remark/master/logo.svg | ||
[build-badge]: https://img.shields.io/travis/wooorm/remark.svg | ||
@@ -241,6 +63,2 @@ | ||
[docs-badge]: https://img.shields.io/badge/docs-A-brightgreen.svg | ||
[docs-status]: http://inch-ci.org/github/wooorm/remark | ||
[chat-badge]: https://img.shields.io/gitter/room/wooorm/remark.svg | ||
@@ -250,28 +68,20 @@ | ||
[npm]: https://docs.npmjs.com/cli/install | ||
[license]: LICENSE | ||
[migrating]: https://github.com/wooorm/remark/releases/tag/3.0.0 | ||
[author]: http://wooorm.com | ||
[remark-lint]: https://github.com/wooorm/remark-lint | ||
[npm]: https://docs.npmjs.com/cli/install | ||
[remark-github]: https://github.com/wooorm/remark-github | ||
[remark]: https://github.com/wooorm/remark | ||
[remark-toc]: https://github.com/wooorm/remark-toc | ||
[unified]: https://github.com/wooorm/unified | ||
[remark-1]: doc/remark.1.md | ||
[mdast]: https://github.com/wooorm/mdast | ||
[remark-3]: doc/remark.3.md | ||
[parse]: https://github.com/wooorm/remark/blob/master/packages/remark-parse | ||
[plugins]: doc/plugins.md | ||
[stringify]: https://github.com/wooorm/remark/blob/master/packages/remark-stringify | ||
[install]: doc/installation.md | ||
[plugins]: https://github.com/wooorm/remark/blob/master/doc/plugins.md | ||
[start-api]: doc/getting-started.md#application-programming-interface | ||
[start-cli]: doc/getting-started.md#command-line-interface | ||
[api]: #api | ||
## License | ||
[MIT](LICENSE) © [Titus Wormer](http://wooorm.com) | ||
[unified-usage]: https://github.com/wooorm/unified#usage |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
3
0
1
3731
4
25
85
1
+ Addedremark-parse@^1.0.0
+ Addedremark-stringify@^1.0.0
+ Addedhas@1.0.4(transitive)
+ Addedremark-parse@1.1.0(transitive)
+ Addedremark-stringify@1.1.0(transitive)
+ Addedtrough@1.0.5(transitive)
+ Addedunified@4.2.1(transitive)
- Removedcamelcase@^2.0.0
- Removedccount@^1.0.0
- Removedchalk@^1.0.0
- Removedchokidar@^1.0.5
- Removedcollapse-white-space@^1.0.0
- Removedcommander@^2.0.0
- Removedconcat-stream@^1.0.0
- Removeddebug@^2.0.0
- Removedelegant-spinner@^1.0.0
- Removedextend@^3.0.0
- Removedglob@^7.0.0
- Removedglobby@^4.0.0
- Removedlog-update@^1.0.1
- Removedlongest-streak@^1.0.0
- Removedmarkdown-table@^0.4.0
- Removedminimatch@^3.0.0
- Removednpm-prefix@^1.0.1
- Removedparse-entities@^1.0.0
- Removedrepeat-string@^1.5.0
- Removedstringify-entities@^1.0.0
- Removedto-vfile@^1.0.0
- Removedtrim@^0.0.1
- Removedtrim-trailing-lines@^1.0.0
- Removedunist-util-remove-position@^1.0.0
- Removeduser-home@^2.0.0
- Removedvfile@^1.1.0
- Removedvfile-find-down@^1.0.0
- Removedvfile-find-up@^1.0.0
- Removedvfile-location@^2.0.0
- Removedvfile-reporter@^1.5.0
- Removedware@^1.3.0
- Removedansi-escapes@1.4.0(transitive)
- Removedansi-regex@2.1.1(transitive)
- Removedansi-styles@2.2.1(transitive)
- Removedanymatch@1.3.2(transitive)
- Removedarr-diff@2.0.04.0.0(transitive)
- Removedarr-flatten@1.1.0(transitive)
- Removedarr-union@3.1.0(transitive)
- Removedarray-union@1.0.2(transitive)
- Removedarray-uniq@1.0.3(transitive)
- Removedarray-unique@0.2.10.3.2(transitive)
- Removedarrify@1.0.1(transitive)
- Removedassign-symbols@1.0.0(transitive)
- Removedasync-each@1.0.6(transitive)
- Removedatob@2.1.2(transitive)
- Removedattach-ware@2.0.5(transitive)
- Removedbalanced-match@1.0.2(transitive)
- Removedbase@0.11.2(transitive)
- Removedbinary-extensions@1.13.1(transitive)
- Removedbindings@1.5.0(transitive)
- Removedbrace-expansion@1.1.11(transitive)
- Removedbraces@1.8.52.3.2(transitive)
- Removedbuffer-from@1.1.2(transitive)
- Removedcache-base@1.0.1(transitive)
- Removedcamelcase@2.1.1(transitive)
- Removedchalk@1.1.3(transitive)
- Removedchokidar@1.7.0(transitive)
- Removedclass-utils@0.3.6(transitive)
- Removedcli-cursor@1.0.2(transitive)
- Removedco@3.1.0(transitive)
- Removedcode-point-at@1.1.0(transitive)
- Removedcollection-visit@1.0.0(transitive)
- Removedcommander@2.20.3(transitive)
- Removedcomponent-emitter@1.3.1(transitive)
- Removedconcat-map@0.0.1(transitive)
- Removedconcat-stream@1.6.2(transitive)
- Removedcopy-descriptor@0.1.1(transitive)
- Removedcore-util-is@1.0.3(transitive)
- Removeddebug@2.6.9(transitive)
- Removeddecode-uri-component@0.2.2(transitive)
- Removeddeep-extend@0.6.0(transitive)
- Removeddefine-property@0.2.51.0.02.0.2(transitive)
- Removedelegant-spinner@1.0.1(transitive)
- Removedescape-string-regexp@1.0.5(transitive)
- Removedexit-hook@1.1.1(transitive)
- Removedexpand-brackets@0.1.52.1.4(transitive)
- Removedexpand-range@1.8.2(transitive)
- Removedextend-shallow@2.0.13.0.2(transitive)
- Removedextglob@0.3.22.0.4(transitive)
- Removedfile-uri-to-path@1.0.0(transitive)
- Removedfilename-regex@2.0.1(transitive)
- Removedfill-range@2.2.44.0.0(transitive)
- Removedfor-in@1.0.2(transitive)
- Removedfor-own@0.1.5(transitive)
- Removedfragment-cache@0.2.1(transitive)
- Removedfs.realpath@1.0.0(transitive)
- Removedfsevents@1.2.13(transitive)
- Removedfunction-bind@1.1.2(transitive)
- Removedget-value@2.0.6(transitive)
- Removedglob@6.0.47.2.3(transitive)
- Removedglob-base@0.3.0(transitive)
- Removedglob-parent@2.0.0(transitive)
- Removedglobby@4.1.0(transitive)
- Removedgraceful-fs@4.2.11(transitive)
- Removedhas-ansi@2.0.0(transitive)
- Removedhas-value@0.3.11.0.0(transitive)
- Removedhas-values@0.1.41.0.0(transitive)
- Removedhasown@2.0.2(transitive)
- Removedinflight@1.0.6(transitive)
- Removedini@1.3.8(transitive)
- Removedirregular-plurals@1.4.0(transitive)
- Removedis-accessor-descriptor@1.0.1(transitive)
- Removedis-binary-path@1.0.1(transitive)
- Removedis-buffer@1.1.6(transitive)
- Removedis-data-descriptor@1.0.1(transitive)
- Removedis-descriptor@0.1.71.0.3(transitive)
- Removedis-dotfile@1.0.3(transitive)
- Removedis-equal-shallow@0.1.3(transitive)
- Removedis-extendable@0.1.11.0.1(transitive)
- Removedis-extglob@1.0.0(transitive)
- Removedis-fullwidth-code-point@1.0.0(transitive)
- Removedis-glob@2.0.1(transitive)
- Removedis-number@2.1.03.0.04.0.0(transitive)
- Removedis-plain-object@2.0.4(transitive)
- Removedis-posix-bracket@0.1.1(transitive)
- Removedis-primitive@2.0.0(transitive)
- Removedis-windows@1.0.2(transitive)
- Removedisarray@1.0.0(transitive)
- Removedisobject@2.1.03.0.1(transitive)
- Removedkind-of@3.2.24.0.06.0.3(transitive)
- Removedlog-symbols@1.0.2(transitive)
- Removedlog-update@1.0.2(transitive)
- Removedmap-cache@0.2.2(transitive)
- Removedmap-visit@1.0.0(transitive)
- Removedmath-random@1.0.4(transitive)
- Removedmicromatch@2.3.113.1.10(transitive)
- Removedminimatch@3.1.2(transitive)
- Removedminimist@1.2.8(transitive)
- Removedmixin-deep@1.3.2(transitive)
- Removedms@2.0.0(transitive)
- Removednan@2.22.0(transitive)
- Removednanomatch@1.2.13(transitive)
- Removednormalize-path@2.1.1(transitive)
- Removednpm-prefix@1.2.0(transitive)
- Removednumber-is-nan@1.0.1(transitive)
- Removedobject-assign@4.1.1(transitive)
- Removedobject-copy@0.1.0(transitive)
- Removedobject-visit@1.0.1(transitive)
- Removedobject.omit@2.0.1(transitive)
- Removedobject.pick@1.3.0(transitive)
- Removedonetime@1.1.0(transitive)
- Removedos-homedir@1.0.2(transitive)
- Removedparse-glob@3.0.4(transitive)
- Removedpascalcase@0.1.1(transitive)
- Removedpath-is-absolute@1.0.1(transitive)
- Removedpify@2.3.0(transitive)
- Removedpinkie@2.0.4(transitive)
- Removedpinkie-promise@2.0.1(transitive)
- Removedplur@2.1.2(transitive)
- Removedposix-character-classes@0.1.1(transitive)
- Removedpreserve@0.2.0(transitive)
- Removedprocess-nextick-args@2.0.1(transitive)
- Removedrandomatic@3.1.1(transitive)
- Removedrc@1.2.8(transitive)
- Removedreadable-stream@2.3.8(transitive)
- Removedreaddirp@2.2.1(transitive)
- Removedregex-cache@0.4.4(transitive)
- Removedregex-not@1.0.2(transitive)
- Removedremove-trailing-separator@1.1.0(transitive)
- Removedrepeat-element@1.1.4(transitive)
- Removedresolve-url@0.2.1(transitive)
- Removedrestore-cursor@1.0.1(transitive)
- Removedret@0.1.15(transitive)
- Removedsafe-buffer@5.1.2(transitive)
- Removedsafe-regex@1.1.0(transitive)
- Removedset-value@2.0.1(transitive)
- Removedshellsubstitute@1.2.0(transitive)
- Removedsnapdragon@0.8.2(transitive)
- Removedsnapdragon-node@2.1.1(transitive)
- Removedsnapdragon-util@3.0.1(transitive)
- Removedsource-map@0.5.7(transitive)
- Removedsource-map-resolve@0.5.3(transitive)
- Removedsource-map-url@0.4.1(transitive)
- Removedsplit-string@3.1.0(transitive)
- Removedstatic-extend@0.1.2(transitive)
- Removedstring-width@1.0.2(transitive)
- Removedstring_decoder@1.1.1(transitive)
- Removedstrip-ansi@3.0.1(transitive)
- Removedstrip-json-comments@2.0.1(transitive)
- Removedsupports-color@2.0.0(transitive)
- Removedtext-table@0.2.0(transitive)
- Removedto-object-path@0.3.0(transitive)
- Removedto-regex@3.0.2(transitive)
- Removedto-regex-range@2.1.1(transitive)
- Removedto-vfile@1.0.0(transitive)
- Removedtypedarray@0.0.6(transitive)
- Removedunified@3.0.0(transitive)
- Removedunion-value@1.0.1(transitive)
- Removedunset-value@1.0.0(transitive)
- Removeduntildify@2.1.0(transitive)
- Removedurix@0.1.0(transitive)
- Removeduse@3.1.1(transitive)
- Removeduser-home@2.0.0(transitive)
- Removedutil-deprecate@1.0.2(transitive)
- Removedvfile-find-down@1.0.0(transitive)
- Removedvfile-find-up@1.0.0(transitive)
- Removedvfile-reporter@1.5.0(transitive)
- Removedvfile-sort@1.0.0(transitive)
- Removedware@1.3.0(transitive)
- Removedwrap-fn@0.1.5(transitive)
Updatedunified@^4.1.1