1 ---
2 title: Dependency Selector Syntax & Querying
3 section: 7
4 description: Dependency Selector Syntax & Querying
5 github_repo: npm/cli
6 github_branch: release/v10
7 github_path: docs/lib/content/using-npm/dependency-selectors.md
8 redirect_from:
9 - /cli-documentation/v10/misc/dependency-selectors
10 - /cli-documentation/v10/using-npm/dependency-selectors
11 - /cli/v10/misc/dependency-selectors
12 ---
13
14 ### Description
15
16 The [`npm query`](/cli/v10/commands/npm-query) command exposes a new dependency selector syntax (informed by & respecting many aspects of the [CSS Selectors 4 Spec](https://dev.w3.org/csswg/selectors4/#relational)) which:
17
18 - Standardizes the shape of, & querying of, dependency graphs with a robust object model, metadata & selector syntax
19 - Leverages existing, known language syntax & operators from CSS to make disparate package information broadly accessible
20 - Unlocks the ability to answer complex, multi-faceted questions about dependencies, their relationships & associative metadata
21 - Consolidates redundant logic of similar query commands in `npm` (ex. `npm fund`, `npm ls`, `npm outdated`, `npm audit` ...)
22
23 ### Dependency Selector Syntax
24
25 #### Overview:
26
27 - there is no "type" or "tag" selectors (ex. `div, h1, a`) as a dependency/target is the only type of `Node` that can be queried
28 - the term "dependencies" is in reference to any `Node` found in a `tree` returned by `Arborist`
29
30 #### Combinators
31
32 - `>` direct descendant/child
33 - ` ` any descendant/child
34 - `~` sibling
35
36 #### Selectors
37
38 - `*` universal selector
39 - `#<name>` dependency selector (equivalent to `[name="..."]`)
40 - `#<name>@<version>` (equivalent to `[name=<name>]:semver(<version>)`)
41 - `,` selector list delimiter
42 - `.` dependency type selector
43 - `:` pseudo selector
44
45 #### Dependency Type Selectors
46
47 - `.prod` dependency found in the `dependencies` section of `package.json`, or is a child of said dependency
48 - `.dev` dependency found in the `devDependencies` section of `package.json`, or is a child of said dependency
49 - `.optional` dependency found in the `optionalDependencies` section of `package.json`, or has `"optional": true` set in its entry in the `peerDependenciesMeta` section of `package.json`, or a child of said dependency
50 - `.peer` dependency found in the `peerDependencies` section of `package.json`
51 - `.workspace` dependency found in the [`workspaces`](https://docs.npmjs.com/cli/v8/using-npm/workspaces) section of `package.json`
52 - `.bundled` dependency found in the `bundleDependencies` section of `package.json`, or is a child of said dependency
53
54 #### Pseudo Selectors
55
56 - [`:not(<selector>)`](https://developer.mozilla.org/en-US/docs/Web/CSS/:not)
57 - [`:has(<selector>)`](https://developer.mozilla.org/en-US/docs/Web/CSS/:has)
58 - [`:is(<selector list>)`](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)
59 - [`:root`](https://developer.mozilla.org/en-US/docs/Web/CSS/:root) matches the root node/dependency
60 - [`:scope`](https://developer.mozilla.org/en-US/docs/Web/CSS/:scope) matches node/dependency it was queried against
61 - [`:empty`](https://developer.mozilla.org/en-US/docs/Web/CSS/:empty) when a dependency has no dependencies
62 - [`:private`](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#private) when a dependency is private
63 - `:link` when a dependency is linked (for instance, workspaces or packages manually [`linked`](https://docs.npmjs.com/cli/v8/commands/npm-link)
64 - `:deduped` when a dependency has been deduped (note that this does _not_ always mean the dependency has been hoisted to the root of node_modules)
65 - `:overridden` when a dependency has been overridden
66 - `:extraneous` when a dependency exists but is not defined as a dependency of any node
67 - `:invalid` when a dependency version is out of its ancestors specified range
68 - `:missing` when a dependency is not found on disk
69 - `:semver(<spec>, [selector], [function])` match a valid [`node-semver`](https://github.com/npm/node-semver) version or range to a selector
70 - `:path(<path>)` [glob](https://www.npmjs.com/package/glob) matching based on dependencies path relative to the project
71 - `:type(<type>)` [based on currently recognized types](https://github.com/npm/npm-package-arg#result-object)
72 - `:outdated(<type>)` when a dependency is outdated
73 - `:vuln(<selector>)` when a dependency has a known vulnerability
74
75 ##### `:semver(<spec>, [selector], [function])`
76
77 The `:semver()` pseudo selector allows comparing fields from each node's `package.json` using [semver](https://github.com/npm/node-semver#readme) methods. It accepts up to 3 parameters, all but the first of which are optional.
78
79 - `spec` a semver version or range
80 - `selector` an attribute selector for each node (default `[version]`)
81 - `function` a semver method to apply, one of: `satisfies`, `intersects`, `subset`, `gt`, `gte`, `gtr`, `lt`, `lte`, `ltr`, `eq`, `neq` or the special function `infer` (default `infer`)
82
83 When the special `infer` function is used the `spec` and the actual value from the node are compared. If both are versions, according to `semver.valid()`, `eq` is used. If both values are ranges, according to `!semver.valid()`, `intersects` is used. If the values are mixed types `satisfies` is used.
84
85 Some examples:
86
87 - `:semver(^1.0.0)` returns every node that has a `version` satisfied by the provided range `^1.0.0`
88 - `:semver(16.0.0, :attr(engines, [node]))` returns every node which has an `engines.node` property satisfying the version `16.0.0`
89 - `:semver(1.0.0, [version], lt)` every node with a `version` less than `1.0.0`
90
91 ##### `:outdated(<type>)`
92
93 The `:outdated` pseudo selector retrieves data from the registry and returns information about which of your dependencies are outdated. The type parameter may be one of the following:
94
95 - `any` (default) a version exists that is greater than the current one
96 - `in-range` a version exists that is greater than the current one, and satisfies at least one if its parent's dependencies
97 - `out-of-range` a version exists that is greater than the current one, does not satisfy at least one of its parent's dependencies
98 - `major` a version exists that is a semver major greater than the current one
99 - `minor` a version exists that is a semver minor greater than the current one
100 - `patch` a version exists that is a semver patch greater than the current one
101
102 In addition to the filtering performed by the pseudo selector, some extra data is added to the resulting objects. The following data can be found under the `queryContext` property of each node.
103
104 - `versions` an array of every available version of the given node
105 - `outdated.inRange` an array of objects, each with a `from` and `versions`, where `from` is the on-disk location of the node that depends on the current node and `versions` is an array of all available versions that satisfies that dependency. This is only populated if `:outdated(in-range)` is used.
106 - `outdated.outOfRange` an array of objects, identical in shape to `inRange`, but where the `versions` array is every available version that does not satisfy the dependency. This is only populated if `:outdated(out-of-range)` is used.
107
108 Some examples:
109
110 - `:root > :outdated(major)` returns every direct dependency that has a new semver major release
111 - `.prod:outdated(in-range)` returns production dependencies that have a new release that satisfies at least one of its parent's dependencies
112
113 ##### `:vuln`
114
115 The `:vuln` pseudo selector retrieves data from the registry and returns information about which if your dependencies has a known vulnerability. Only dependencies whose current version matches a vulnerability will be returned. For example if you have `semver@7.6.0` in your tree, a vulnerability for `semver` which affects versions `<=6.3.1` will not match.
116
117 You can also filter results by certain attributes in advisories. Currently that includes `severity` and `cwe`. Note that severity filtering is done per severity, it does not include severities "higher" or "lower" than the one specified.
118
119 In addition to the filtering performed by the pseudo selector, info about each relevant advisory will be added to the `queryContext` attribute of each node under the `advisories` attribute.
120
121 Some examples:
122
123 - `:root > .prod:vuln` returns direct production dependencies with any known vulnerability
124 - `:vuln([severity=high])` returns only dependencies with a vulnerability with a `high` severity.
125 - `:vuln([severity=high],[severity=moderate])` returns only dependencies with a vulnerability with a `high` or `moderate` severity.
126 - `:vuln([cwe=1333])` returns only dependencies with a vulnerability that includes CWE-1333 (ReDoS)
127
128 #### [Attribute Selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors)
129
130 The attribute selector evaluates the key/value pairs in `package.json` if they are `String`s.
131
132 - `[]` attribute selector (ie. existence of attribute)
133 - `[attribute=value]` attribute value is equivalent...
134 - `[attribute~=value]` attribute value contains word...
135 - `[attribute*=value]` attribute value contains string...
136 - `[attribute|=value]` attribute value is equal to or starts with...
137 - `[attribute^=value]` attribute value starts with...
138 - `[attribute$=value]` attribute value ends with...
139
140 #### `Array` & `Object` Attribute Selectors
141
142 The generic `:attr()` pseudo selector standardizes a pattern which can be used for attribute selection of `Object`s, `Array`s or `Arrays` of `Object`s accessible via `Arborist`'s `Node.package` metadata. This allows for iterative attribute selection beyond top-level `String` evaluation. The last argument passed to `:attr()` must be an `attribute` selector or a nested `:attr()`. See examples below:
143
144 #### `Objects`
145
146 ```css
147 /* return dependencies that have a `scripts.test` containing `"tap"` */
148 *: attr(scripts, [test~=tap]);
149 ```
150
151 #### Nested `Objects`
152
153 Nested objects are expressed as sequential arguments to `:attr()`.
154
155 ```css
156 /* return dependencies that have a testling config for opera browsers */
157 *: attr(testling, browsers, [~=opera]);
158 ```
159
160 #### `Arrays`
161
162 `Array`s specifically uses a special/reserved `.` character in place of a typical attribute name. `Arrays` also support exact `value` matching when a `String` is passed to the selector.
163
164 ##### Example of an `Array` Attribute Selection:
165
166 ```css
167 /* removes the distinction between properties & arrays */
168 /* ie. we'd have to check the property & iterate to match selection */
169 *:attr([keywords^=react])
170 *:attr(contributors, :attr([name~=Jordan]))
171 ```
172
173 ##### Example of an `Array` matching directly to a value:
174
175 ```css
176 /* return dependencies that have the exact keyword "react" */
177 /* this is equivalent to `*:keywords([value="react"])` */
178 *: attr([keywords=react]);
179 ```
180
181 ##### Example of an `Array` of `Object`s:
182
183 ```css
184 /* returns */
185 *: attr(contributors, [email=ruyadorno @github.com]);
186 ```
187
188 ### Groups
189
190 Dependency groups are defined by the package relationships to their ancestors (ie. the dependency types that are defined in `package.json`). This approach is user-centric as the ecosystem has been taught to think about dependencies in these groups first-and-foremost. Dependencies are allowed to be included in multiple groups (ex. a `prod` dependency may also be a `dev` dependency (in that it's also required by another `dev` dependency) & may also be `bundled` - a selector for that type of dependency would look like: `*.prod.dev.bundled`).
191
192 - `.prod`
193 - `.dev`
194 - `.optional`
195 - `.peer`
196 - `.bundled`
197 - `.workspace`
198
199 Please note that currently `workspace` deps are always `prod` dependencies. Additionally the `.root` dependency is also considered a `prod` dependency.
200
201 ### Programmatic Usage
202
203 - `Arborist`'s `Node` Class has a `.querySelectorAll()` method
204 - this method will return a filtered, flattened dependency Arborist `Node` list based on a valid query selector
205
206 ```js
207 const Arborist = require("@npmcli/arborist");
208 const arb = new Arborist({});
209 ```
210
211 ```js
212 // root-level
213 arb.loadActual().then(async (tree) => {
214 // query all production dependencies
215 const results = await tree.querySelectorAll(".prod");
216 console.log(results);
217 });
218 ```
219
220 ```js
221 // iterative
222 arb.loadActual().then(async (tree) => {
223 // query for the deduped version of react
224 const results = await tree.querySelectorAll("#react:not(:deduped)");
225 // query the deduped react for git deps
226 const deps = await results[0].querySelectorAll(":type(git)");
227 console.log(deps);
228 });
229 ```
230
231 ## See Also
232
233 - [npm query](/cli/v10/commands/npm-query)
234 - [@npmcli/arborist](https://npm.im/@npmcli/arborist)