unist-util-select
Advanced tools
Comparing version 3.0.0 to 3.0.1
{ | ||
"name": "unist-util-select", | ||
"version": "3.0.0", | ||
"description": "Select unist nodes using css-like selectors", | ||
"version": "3.0.1", | ||
"description": "unist utility to select nodes with CSS-like selectors", | ||
"license": "MIT", | ||
"keywords": [ | ||
"unist", | ||
"unist-util", | ||
"util", | ||
"utility", | ||
"visit", | ||
"tree", | ||
"ast", | ||
"node", | ||
"visit", | ||
"walk", | ||
"select", | ||
"selector", | ||
"child", | ||
@@ -15,18 +27,10 @@ "descendant", | ||
"find", | ||
"match", | ||
"ast", | ||
"mdast", | ||
"node", | ||
"retext", | ||
"select", | ||
"selector", | ||
"tree", | ||
"unist", | ||
"util", | ||
"utility", | ||
"visit", | ||
"walk" | ||
"match" | ||
], | ||
"repository": "syntax-tree/unist-util-select", | ||
"bugs": "https://github.com/syntax-tree/unist-util-select/issues", | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
}, | ||
"author": "Eugene Sharygin <eush77@gmail.com>", | ||
@@ -45,11 +49,11 @@ "contributors": [ | ||
"dependencies": { | ||
"css-selector-parser": "^1.1.0", | ||
"css-selector-parser": "^1.0.0", | ||
"not": "^0.1.0", | ||
"nth-check": "^1.0.1", | ||
"nth-check": "^1.0.0", | ||
"unist-util-is": "^4.0.0", | ||
"zwitch": "^1.0.3" | ||
"zwitch": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"dtslint": "^0.9.9", | ||
"nyc": "^14.0.0", | ||
"dtslint": "^2.0.0", | ||
"nyc": "^15.0.0", | ||
"prettier": "^1.0.0", | ||
@@ -59,3 +63,3 @@ "remark-cli": "^7.0.0", | ||
"tape": "^4.0.0", | ||
"unist-builder": "^1.0.0", | ||
"unist-builder": "^2.0.0", | ||
"xo": "^0.25.0" | ||
@@ -62,0 +66,0 @@ }, |
@@ -159,10 +159,11 @@ # unist-util-select | ||
* [`unist-util-filter`](https://github.com/syntax-tree/unist-util-filter) | ||
— Create a new tree with all nodes that pass the given function | ||
* [`unist-util-filter`](https://github.com/eush77/unist-util-filter) | ||
— Create a new tree with all nodes that pass a test | ||
* [`unist-util-map`](https://github.com/syntax-tree/unist-util-map) | ||
— Create a new tree with all nodes mapped by a given function | ||
* [`unist-util-flatmap`](https://gitlab.com/staltz/unist-util-flatmap) | ||
— Create a new tree by expanding a node into many | ||
— Create a new tree by mapping (to an array) with the provided function and | ||
then flattening | ||
* [`unist-util-is`](https://github.com/syntax-tree/unist-util-is) | ||
— Check if a node passes a test | ||
* [`unist-util-map`](https://github.com/syntax-tree/unist-util-map) | ||
— Create a new tree by mapping nodes | ||
* [`unist-util-remove`](https://github.com/syntax-tree/unist-util-remove) | ||
@@ -174,2 +175,4 @@ — Remove nodes from trees | ||
— Recursively walk over nodes | ||
* [`unist-util-visit-parents`](https://github.com/syntax-tree/unist-util-visit-parents) | ||
— Like `visit`, but with a stack of parents | ||
* [`unist-builder`](https://github.com/syntax-tree/unist-builder) | ||
@@ -216,3 +219,3 @@ — Helper for creating trees | ||
[chat-badge]: https://img.shields.io/badge/join%20the%20community-on%20spectrum-7b16ff.svg | ||
[chat-badge]: https://img.shields.io/badge/chat-spectrum-7b16ff.svg | ||
@@ -219,0 +222,0 @@ [chat]: https://spectrum.chat/unified/syntax-tree |
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
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
28411
236
Updatedcss-selector-parser@^1.0.0
Updatednth-check@^1.0.0
Updatedzwitch@^1.0.0