2019-11-05 14:55:08 -05:00
---
title: package.json
2020-11-01 07:54:36 +01:00
section: 5
2019-11-05 14:55:08 -05:00
description: Specifics of npm's package.json handling
---
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### Description
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
This document is all you need to know about what's required in your
package.json file. It must be actual JSON, not just a JavaScript object
literal.
2011-11-21 09:48:45 -08:00
A lot of the behavior described in this document is affected by the config
2019-11-18 21:01:39 +02:00
settings described in [`config` ](/using-npm/config ).
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### name
2011-11-21 09:48:45 -08:00
2018-04-20 18:26:37 -07:00
If you plan to publish your package, the *most* important things in your
2021-01-15 16:09:24 -05:00
package.json are the name and version fields as they will be required. The
name and version together form an identifier that is assumed to be
2022-12-06 22:18:33 -05:00
completely unique. Changes to the package should come along with changes
to the version. If you don't plan to publish your package, the name and
2021-01-15 16:09:24 -05:00
version fields are optional.
2022-12-06 22:18:33 -05:00
The name is what your thing is called.
2011-11-21 09:48:45 -08:00
2015-05-22 03:14:39 -04:00
Some rules:
2021-01-15 16:09:24 -05:00
* The name must be less than or equal to 214 characters. This includes the
scope for scoped packages.
* The names of scoped packages can begin with a dot or an underscore. This
is not permitted without a scope.
2015-05-22 03:14:39 -04:00
* New packages must not have uppercase letters in the name.
2021-01-15 16:09:24 -05:00
* The name ends up being part of a URL, an argument on the command line,
and a folder name. Therefore, the name can't contain any non-URL-safe
characters.
2015-05-22 03:14:39 -04:00
Some tips:
* Don't use the same name as a core Node module.
2021-01-15 16:09:24 -05:00
* Don't put "js" or "node" in the name. It's assumed that it's js, since
you're writing a package.json file, and you can specify the engine using
2024-04-07 14:36:14 -07:00
the "[engines ](#engines )" field. (See below.)
2021-01-15 16:09:24 -05:00
* The name will probably be passed as an argument to require(), so it
should be something short, but also reasonably descriptive.
* You may want to check the npm registry to see if there's something by
that name already, before you get too attached to it.
< https: / / www . npmjs . com / >
2011-11-21 09:48:45 -08:00
2025-02-02 07:09:59 -08:00
A name can be optionally prefixed by a scope, e.g. `@npm/example` . See
2019-11-18 21:01:39 +02:00
[`scope` ](/using-npm/scope ) for more detail.
2014-09-24 14:41:07 -07:00
2019-11-05 14:55:08 -05:00
### version
2011-11-21 09:48:45 -08:00
2022-12-06 22:18:33 -05:00
If you plan to publish your package, the *most* important things in your
package.json are the name and version fields as they will be required. The
name and version together form an identifier that is assumed to be
completely unique. Changes to the package should come along with changes
to the version. If you don't plan to publish your package, the name and
version fields are optional.
2011-11-21 09:48:45 -08:00
Version must be parseable by
2021-01-15 16:09:24 -05:00
[node-semver ](https://github.com/npm/node-semver ), which is bundled with
npm as a dependency. (`npm install semver` to use it yourself.)
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### description
2011-11-21 09:48:45 -08:00
Put a description in it. It's a string. This helps people discover your
package, as it's listed in `npm search` .
2019-11-05 14:55:08 -05:00
### keywords
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
Put keywords in it. It's an array of strings. This helps people discover
your package as it's listed in `npm search` .
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### homepage
2011-11-21 09:48:45 -08:00
2024-04-07 14:36:14 -07:00
The URL to the project homepage.
2011-11-21 09:48:45 -08:00
2018-04-20 18:26:37 -07:00
Example:
2019-11-05 14:55:08 -05:00
```json
2025-02-02 07:09:59 -08:00
"homepage": "https://github.com/npm/example#readme "
2019-11-05 14:55:08 -05:00
```
2018-04-20 18:26:37 -07:00
2019-11-05 14:55:08 -05:00
### bugs
2011-11-21 09:48:45 -08:00
2024-04-07 14:36:14 -07:00
The URL to your project's issue tracker and / or the email address to which
2021-01-15 16:09:24 -05:00
issues should be reported. These are helpful for people who encounter
issues with your package.
2011-11-21 09:48:45 -08:00
It should look like this:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
2023-09-06 12:54:44 -07:00
"bugs": {
2025-02-02 07:09:59 -08:00
"url": "https://github.com/npm/example/issues",
"email": "example@npmjs .com"
2023-09-06 12:54:44 -07:00
}
2019-11-05 14:55:08 -05:00
}
```
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
You can specify either one or both values. If you want to provide only a
2024-04-07 14:36:14 -07:00
URL, you can specify the value for "bugs" as a simple string instead of an
2021-01-15 16:09:24 -05:00
object.
2011-11-21 09:48:45 -08:00
2024-04-07 14:36:14 -07:00
If a URL is provided, it will be used by the `npm bugs` command.
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### license
2013-03-20 17:49:57 -07:00
2021-01-15 16:09:24 -05:00
You should specify a license for your package so that people know how they
are permitted to use it, and any restrictions you're placing on it.
2013-03-20 17:49:57 -07:00
2021-01-15 16:09:24 -05:00
If you're using a common license such as BSD-2-Clause or MIT, add a current
SPDX license identifier for the license you're using, like this:
2013-03-20 17:49:57 -07:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"license" : "BSD-3-Clause"
}
2019-11-05 14:55:08 -05:00
```
2013-12-11 10:20:26 -08:00
2021-01-15 16:09:24 -05:00
You can check [the full list of SPDX license
2025-02-02 07:09:59 -08:00
IDs](https://spdx.org/licenses/). Ideally, you should pick one that is
2023-02-25 01:17:56 -05:00
[OSI ](https://opensource.org/licenses/ ) approved.
2013-03-20 17:49:57 -07:00
2021-01-15 16:09:24 -05:00
If your package is licensed under multiple common licenses, use an [SPDX
license expression syntax version 2.0
2022-07-19 08:51:49 -07:00
string](https://spdx.dev/specifications/), like this:
2015-05-22 03:14:39 -04:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"license" : "(ISC OR GPL-3.0)"
}
2019-11-05 14:55:08 -05:00
```
2015-05-22 03:14:39 -04:00
If you are using a license that hasn't been assigned an SPDX identifier, or if
2016-02-22 11:59:14 -08:00
you are using a custom license, use a string value like this one:
2015-05-22 03:14:39 -04:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"license" : "SEE LICENSE IN < filename > "
}
2019-11-05 14:55:08 -05:00
```
2015-07-06 00:00:48 -07:00
Then include a file named `<filename>` at the top level of the package.
2015-05-22 03:14:39 -04:00
2021-01-15 16:09:24 -05:00
Some old packages used license objects or a "licenses" property containing
an array of license objects:
2015-05-22 03:14:39 -04:00
2019-11-05 14:55:08 -05:00
```json
// Not valid metadata
2021-01-15 16:09:24 -05:00
{
"license" : {
"type" : "ISC",
"url" : "https://opensource.org/licenses/ISC"
2019-11-05 14:55:08 -05:00
}
}
2015-05-22 03:14:39 -04:00
2019-11-05 14:55:08 -05:00
// Not valid metadata
2021-01-15 16:09:24 -05:00
{
"licenses" : [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
},
{
"type": "Apache-2.0",
"url": "https://opensource.org/licenses/apache2.0.php"
2015-05-22 03:14:39 -04:00
}
2019-11-05 14:55:08 -05:00
]
}
```
2015-05-22 03:14:39 -04:00
Those styles are now deprecated. Instead, use SPDX expressions, like this:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"license": "ISC"
}
```
2015-05-22 03:14:39 -04:00
2021-01-15 16:09:24 -05:00
```json
{
"license": "(MIT OR Apache-2.0)"
}
2019-11-05 14:55:08 -05:00
```
2013-03-20 17:49:57 -07:00
2015-07-06 00:00:48 -07:00
Finally, if you do not wish to grant others the right to use a private or
unpublished package under any terms:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"license": "UNLICENSED"
}
2019-11-05 14:55:08 -05:00
```
2021-01-15 16:09:24 -05:00
2015-07-06 00:00:48 -07:00
Consider also setting `"private": true` to prevent accidental publication.
2019-11-05 14:55:08 -05:00
### people fields: author, contributors
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
The "author" is one person. "contributors" is an array of people. A
"person" is an object with a "name" field and optionally "url" and "email",
like this:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"name" : "Barney Rubble",
2025-02-02 07:09:59 -08:00
"email" : "barney@npmjs .com",
"url" : "http://barnyrubble.npmjs.com/"
2019-11-05 14:55:08 -05:00
}
```
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
Or you can shorten that all into a single string, and npm will parse it for
you:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
2025-02-02 07:09:59 -08:00
"author": "Barney Rubble < barney @npmjs .com > (http://barnyrubble.npmjs.com/)"
2021-01-15 16:09:24 -05:00
}
2019-11-05 14:55:08 -05:00
```
2011-11-21 09:48:45 -08:00
Both email and url are optional either way.
npm also sets a top-level "maintainers" field with your npm user info.
2019-11-05 14:55:08 -05:00
### funding
2022-06-24 18:21:50 -07:00
You can specify an object containing a URL that provides up-to-date
2024-07-12 10:35:43 -07:00
information about ways to help fund development of your package, a
string URL, or an array of objects and string URLs:
2019-11-05 14:55:08 -05:00
2021-01-15 16:09:24 -05:00
```json
{
"funding": {
"type" : "individual",
2025-02-02 07:09:59 -08:00
"url" : "http://npmjs.com/donate"
2024-07-12 10:35:43 -07:00
}
}
```
2021-01-15 16:09:24 -05:00
2024-07-12 10:35:43 -07:00
```json
{
2021-01-15 16:09:24 -05:00
"funding": {
"type" : "patreon",
2025-02-02 07:09:59 -08:00
"url" : "https://www.patreon.com/user"
2024-07-12 10:35:43 -07:00
}
}
```
2021-01-15 16:09:24 -05:00
2024-07-12 10:35:43 -07:00
```json
{
2025-02-02 07:09:59 -08:00
"funding": "http://npmjs.com/donate"
2024-07-12 10:35:43 -07:00
}
```
2021-01-15 16:09:24 -05:00
2024-07-12 10:35:43 -07:00
```json
{
2021-01-15 16:09:24 -05:00
"funding": [
{
2019-11-05 14:55:08 -05:00
"type" : "individual",
2025-02-02 07:09:59 -08:00
"url" : "http://npmjs.com/donate"
2021-01-15 16:09:24 -05:00
},
2025-02-02 07:09:59 -08:00
"http://npmjs.com/donate-also",
2021-01-15 16:09:24 -05:00
{
2019-11-05 14:55:08 -05:00
"type" : "patreon",
2025-02-02 07:09:59 -08:00
"url" : "https://www.patreon.com/user"
2019-11-05 14:55:08 -05:00
}
2021-01-15 16:09:24 -05:00
]
}
```
2020-02-26 17:11:08 -08:00
2019-11-05 14:55:08 -05:00
Users can use the `npm fund` subcommand to list the `funding` URLs of all
2021-01-15 16:09:24 -05:00
dependencies of their project, direct and indirect. A shortcut to visit
2024-07-12 10:35:43 -07:00
each funding URL is also available when providing the project name such as:
2021-01-15 16:09:24 -05:00
`npm fund <projectname>` (when there are multiple URLs, the first one will
be visited)
2019-11-05 14:55:08 -05:00
### files
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
The optional `files` field is an array of file patterns that describes the
entries to be included when your package is installed as a dependency. File
patterns follow a similar syntax to `.gitignore` , but reversed: including a
file, directory, or glob pattern (`*` , `**/*` , and such) will make it so
that file is included in the tarball when it's packed. Omitting the field
will make it default to `["*"]` , which means it will include all files.
2018-04-20 18:26:37 -07:00
2021-01-15 16:09:24 -05:00
Some special files and directories are also included or excluded regardless
of whether they exist in the `files` array (see below).
2017-10-26 22:35:25 -04:00
2021-01-15 16:09:24 -05:00
You can also provide a `.npmignore` file in the root of your package or in
subdirectories, which will keep files from being included. At the root of
your package it will not override the "files" field, but in subdirectories
it will. The `.npmignore` file works just like a `.gitignore` . If there is
a `.gitignore` file, and `.npmignore` is missing, `.gitignore` 's contents
will be used instead.
2017-10-26 22:35:25 -04:00
2015-07-31 17:08:03 -07:00
Certain files are always included, regardless of settings:
* `package.json`
2016-02-22 11:59:14 -08:00
* `README`
2015-07-31 17:08:03 -07:00
* `LICENSE` / `LICENCE`
2016-02-22 11:59:14 -08:00
* The file in the "main" field
2023-09-06 12:54:44 -07:00
* The file(s) in the "bin" field
2016-02-22 11:59:14 -08:00
2021-08-19 17:47:33 +00:00
`README` & `LICENSE` can have any case and extension.
2015-07-31 17:08:03 -07:00
2024-01-11 06:28:56 -08:00
Some files are always ignored by default:
2015-07-31 17:08:03 -07:00
2024-01-11 06:28:56 -08:00
* `*.orig`
* `.*.swp`
* `.DS_Store`
* `._*`
2015-07-31 17:08:03 -07:00
* `.git`
* `.hg`
* `.lock-wscript`
2024-01-11 06:28:56 -08:00
* `.npmrc`
* `.svn`
2015-07-31 17:08:03 -07:00
* `.wafpickle-N`
2024-01-11 06:28:56 -08:00
* `CVS`
* `config.gypi`
* `node_modules`
2015-07-31 17:08:03 -07:00
* `npm-debug.log`
2024-01-11 06:28:56 -08:00
* `package-lock.json` (use
[`npm-shrinkwrap.json` ](/configuring-npm/npm-shrinkwrap-json )
if you wish it to be published)
* `pnpm-lock.yaml`
* `yarn.lock`
2025-01-10 08:20:27 -08:00
* `bun.lockb`
2024-01-11 06:28:56 -08:00
Most of these ignored files can be included specifically if included in
the `files` globs. Exceptions to this are:
* `.git`
2016-02-22 11:59:14 -08:00
* `.npmrc`
2016-04-11 11:32:13 -07:00
* `node_modules`
2024-01-11 06:28:56 -08:00
* `package-lock.json`
* `pnpm-lock.yaml`
* `yarn.lock`
2025-01-10 08:20:27 -08:00
* `bun.lockb`
2024-01-11 06:28:56 -08:00
These can not be included.
2015-07-31 17:08:03 -07:00
2024-10-05 06:54:06 -07:00
### exports
The "exports" provides a modern alternative to "main" allowing multiple entry points to be defined, conditional entry resolution support between environments, and preventing any other entry points besides those defined in "exports". This encapsulation allows module authors to clearly define the public interface for their package. For more details see the [node.js documentation on package entry points ](https://nodejs.org/api/packages.html#package-entry-points )
2019-11-05 14:55:08 -05:00
### main
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
The main field is a module ID that is the primary entry point to your
program. That is, if your package is named `foo` , and a user installs it,
and then does `require("foo")` , then your main module's exports object will
be returned.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
This should be a module relative to the root of your package folder.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
For most modules, it makes the most sense to have a main script and often
not much else.
2011-11-21 09:48:45 -08:00
2023-05-19 06:45:02 -07:00
If `main` is not set, it defaults to `index.js` in the package's root folder.
2021-03-23 14:58:11 -04:00
2019-11-05 14:55:08 -05:00
### browser
2018-04-20 18:26:37 -07:00
If your module is meant to be used client-side the browser field should be
used instead of the main field. This is helpful to hint users that it might
2021-01-15 16:09:24 -05:00
rely on primitives that aren't available in Node.js modules. (e.g.
`window` )
2018-04-20 18:26:37 -07:00
2019-11-05 14:55:08 -05:00
### bin
2011-11-21 09:48:45 -08:00
A lot of packages have one or more executable files that they'd like to
install into the PATH. npm makes this pretty easy (in fact, it uses this
feature to install the "npm" executable.)
To use this, supply a `bin` field in your package.json which is a map of
2022-12-06 22:18:33 -05:00
command name to local file name. When this package is installed globally,
that file will be either linked inside the global bins directory or
a cmd (Windows Command File) will be created which executes the specified
file in the `bin` field, so it is available to run by `name` or `name.cmd` (on
Windows PowerShell). When this package is installed as a dependency in another
package, the file will be linked where it will be available to that package
either directly by `npm exec` or by name in other scripts when invoking them
via `npm run-script` .
2011-11-21 09:48:45 -08:00
2015-01-23 06:56:30 -08:00
For example, myapp could have this:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"bin": {
2024-05-16 05:38:49 -07:00
"myapp": "bin/cli.js"
2021-01-15 16:09:24 -05:00
}
}
2019-11-05 14:55:08 -05:00
```
2011-11-21 09:48:45 -08:00
2022-12-06 22:18:33 -05:00
So, when you install myapp, in case of unix-like OS it'll create a symlink
from the `cli.js` script to `/usr/local/bin/myapp` and in case of windows it
will create a cmd file usually at `C:\Users\{Username}\AppData\Roaming\npm\myapp.cmd`
which runs the `cli.js` script.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
If you have a single executable, and its name should be the name of the
package, then you can just supply it as a string. For example:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"name": "my-program",
"version": "1.2.5",
2024-05-16 05:38:49 -07:00
"bin": "path/to/program"
2021-01-15 16:09:24 -05:00
}
2019-11-05 14:55:08 -05:00
```
2011-11-21 09:48:45 -08:00
would be the same as this:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"name": "my-program",
"version": "1.2.5",
"bin": {
2024-05-16 05:38:49 -07:00
"my-program": "path/to/program"
2021-01-15 16:09:24 -05:00
}
}
2019-11-05 14:55:08 -05:00
```
2011-11-21 09:48:45 -08:00
2016-09-22 07:59:37 -07:00
Please make sure that your file(s) referenced in `bin` starts with
`#!/usr/bin/env node` , otherwise the scripts are started without the node
executable!
2021-04-29 16:30:06 -04:00
Note that you can also set the executable files using [directories.bin ](#directoriesbin ).
2021-07-15 20:09:18 +00:00
See [folders ](/configuring-npm/folders#executables ) for more info on
executables.
2019-11-05 14:55:08 -05:00
### man
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
Specify either a single file or an array of filenames to put in place for
the `man` program to find.
2011-11-21 09:48:45 -08:00
If only a single file is provided, then it's installed such that it is the
2021-01-15 16:09:24 -05:00
result from `man <pkgname>` , regardless of its actual filename. For
example:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"name": "foo",
"version": "1.2.3",
"description": "A packaged foo fooer for fooing foos",
"main": "foo.js",
"man": "./man/doc.1"
2019-11-05 14:55:08 -05:00
}
```
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
would link the `./man/doc.1` file in such that it is the target for `man
foo`
2011-11-21 09:48:45 -08:00
If the filename doesn't start with the package name, then it's prefixed.
So, this:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"name": "foo",
"version": "1.2.3",
"description": "A packaged foo fooer for fooing foos",
"main": "foo.js",
"man": [
"./man/foo.1",
"./man/bar.1"
]
2019-11-05 14:55:08 -05:00
}
```
2011-11-21 09:48:45 -08:00
will create files to do `man foo` and `man foo-bar` .
Man files must end with a number, and optionally a `.gz` suffix if they are
2021-01-15 16:09:24 -05:00
compressed. The number dictates which man section the file is installed
into.
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"name": "foo",
"version": "1.2.3",
"description": "A packaged foo fooer for fooing foos",
"main": "foo.js",
"man": [
"./man/foo.1",
"./man/foo.2"
]
2019-11-05 14:55:08 -05:00
}
```
2021-01-15 16:09:24 -05:00
2011-11-21 09:48:45 -08:00
will create entries for `man foo` and `man 2 foo`
2019-11-05 14:55:08 -05:00
### directories
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
The CommonJS [Packages ](http://wiki.commonjs.org/wiki/Packages/1.0 ) spec
details a few ways that you can indicate the structure of your package
using a `directories` object. If you look at [npm's
package.json](https://registry.npmjs.org/npm/latest), you'll see that it
has directories for doc, lib, and man.
2011-11-21 09:48:45 -08:00
In the future, this information may be used in other creative ways.
2019-11-05 14:55:08 -05:00
#### directories.bin
2011-11-21 09:48:45 -08:00
2015-07-09 20:48:26 -07:00
If you specify a `bin` directory in `directories.bin` , all the files in
that folder will be added.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
Because of the way the `bin` directive works, specifying both a `bin` path
and setting `directories.bin` is an error. If you want to specify
individual files, use `bin` , and for all the files in an existing `bin`
directory, use `directories.bin` .
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
#### directories.man
2011-11-21 09:48:45 -08:00
A folder that is full of man pages. Sugar to generate a "man" array by
walking the folder.
2019-11-05 14:55:08 -05:00
### repository
2011-11-21 09:48:45 -08:00
Specify the place where your code lives. This is helpful for people who
2024-05-16 05:38:49 -07:00
want to contribute. If the git repo is on GitHub, then the `npm repo`
2011-11-21 09:48:45 -08:00
command will be able to find you.
Do it like this:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"repository": {
"type": "git",
2024-07-12 10:35:43 -07:00
"url": "git+https://github.com/npm/cli.git"
2021-01-15 16:09:24 -05:00
}
2019-11-05 14:55:08 -05:00
}
```
2011-11-21 09:48:45 -08:00
2024-04-07 14:36:14 -07:00
The URL should be a publicly available (perhaps read-only) URL that can be
2021-01-15 16:09:24 -05:00
handed directly to a VCS program without any modification. It should not
2024-04-07 14:36:14 -07:00
be a URL to an html project page that you put in your browser. It's for
2021-01-15 16:09:24 -05:00
computers.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the
same shortcut syntax you use for `npm install` :
2015-02-20 09:03:34 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
2025-02-02 07:09:59 -08:00
"repository": "npm/example",
2015-02-20 09:03:34 -08:00
2025-02-02 07:09:59 -08:00
"repository": "github:npm/example",
2017-12-07 14:05:23 -08:00
2021-01-15 16:09:24 -05:00
"repository": "gist:11081aaa281",
2015-04-17 01:12:21 -07:00
2021-01-15 16:09:24 -05:00
"repository": "bitbucket:user/repo",
2015-04-17 01:12:21 -07:00
2021-01-15 16:09:24 -05:00
"repository": "gitlab:user/repo"
}
2019-11-05 14:55:08 -05:00
```
2015-04-17 01:12:21 -07:00
2021-01-15 16:09:24 -05:00
If the `package.json` for your package is not in the root directory (for
example if it is part of a monorepo), you can specify the directory in
which it lives:
2019-04-05 15:17:30 -04:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"repository": {
"type": "git",
2024-07-12 10:35:43 -07:00
"url": "git+https://github.com/npm/cli.git",
"directory": "workspaces/libnpmpublish"
2021-01-15 16:09:24 -05:00
}
2019-11-05 14:55:08 -05:00
}
```
2019-04-05 15:17:30 -04:00
2019-11-05 14:55:08 -05:00
### scripts
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
The "scripts" property is a dictionary containing script commands that are
run at various times in the lifecycle of your package. The key is the
lifecycle event, and the value is the command to run at that point.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
See [`scripts` ](/using-npm/scripts ) to find out more about writing package
scripts.
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### config
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
A "config" object can be used to set configuration parameters used in
package scripts that persist across upgrades. For instance, if a package
had the following:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"name": "foo",
"config": {
"port": "8080"
}
}
2019-11-05 14:55:08 -05:00
```
2011-11-21 09:48:45 -08:00
2021-07-01 17:32:45 +00:00
It could also have a "start" command that referenced the
`npm_package_config_port` environment variable.
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### dependencies
2011-11-21 09:48:45 -08:00
2014-11-04 15:08:12 -08:00
Dependencies are specified in a simple object that maps a package name to a
2013-08-16 08:19:31 -07:00
version range. The version range is a string which has one or more
2014-11-04 15:08:12 -08:00
space-separated descriptors. Dependencies can also be identified with a
tarball or git URL.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
**Please do not put test harnesses or transpilers or other "development"
time tools in your `dependencies` object.** See `devDependencies` , below.
2011-11-21 09:48:45 -08:00
2021-05-10 17:31:02 -04:00
See [semver ](https://github.com/npm/node-semver#versions ) for more details about specifying version ranges.
2011-11-21 09:48:45 -08:00
* `version` Must match `version` exactly
* `>version` Must be greater than `version`
* `>=version` etc
* `<version`
* `<=version`
2021-01-15 16:09:24 -05:00
* `~version` "Approximately equivalent to version" See
2021-01-28 17:38:39 -05:00
[semver ](https://github.com/npm/node-semver#versions )
* `^version` "Compatible with version" See [semver ](https://github.com/npm/node-semver#versions )
2013-08-16 08:19:31 -07:00
* `1.2.x` 1.2.0, 1.2.1, etc., but not 1.3.0
2011-11-21 09:48:45 -08:00
* `http://...` See 'URLs as Dependencies' below
* `*` Matches any version
* `""` (just an empty string) Same as `*`
* `version1 - version2` Same as `>=version1 <=version2` .
* `range1 || range2` Passes if either range1 or range2 are satisfied.
2012-05-05 22:33:06 -07:00
* `git...` See 'Git URLs as Dependencies' below
2013-09-05 17:13:50 -07:00
* `user/repo` See 'GitHub URLs' below
2021-01-15 16:09:24 -05:00
* `tag` A specific version tagged and published as `tag` See [`npm
dist-tag`](/commands/npm-dist-tag)
2016-01-28 18:11:35 -08:00
* `path/path/path` See [Local Paths ](#local-paths ) below
2025-02-02 07:09:59 -08:00
* `npm:@scope/pkg@version` Custom alias for a package See [`package-spec` ](/using-npm/package-spec#aliases )
2011-11-21 09:48:45 -08:00
For example, these are all valid:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"dependencies": {
"foo": "1.0.0 - 2.9999.9999",
"bar": ">=1.0.2 < 2.1.2 " ,
"baz": ">1.0.2 < =2.3.4",
"boo": "2.0.1",
"qux": "< 1.0.0 | | > =2.3.1 < 2.4.5 | | > =2.5.2 < 3.0.0 " ,
2025-02-02 07:09:59 -08:00
"asd": "http://npmjs.com/example.tar.gz",
2021-01-15 16:09:24 -05:00
"til": "~1.2",
"elf": "~1.2.3",
"two": "2.x",
"thr": "3.3.x",
"lat": "latest",
2024-09-07 23:09:40 -07:00
"dyl": "file:../dyl",
"kpg": "npm:pkg@1 .0.0"
2019-11-05 14:55:08 -05:00
}
}
```
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
#### URLs as Dependencies
2011-11-21 09:48:45 -08:00
2013-08-16 08:19:31 -07:00
You may specify a tarball URL in place of a version range.
2011-11-21 09:48:45 -08:00
This tarball will be downloaded and installed locally to your package at
install time.
2019-11-05 14:55:08 -05:00
#### Git URLs as Dependencies
2012-05-05 22:33:06 -07:00
2024-04-07 14:36:14 -07:00
Git URLs are of the form:
2012-05-05 22:33:06 -07:00
2019-11-05 14:55:08 -05:00
```bash
< protocol > ://[< user > [:< password > ]@]< hostname > [:< port > ][:][/]< path > [#< commit-ish > | #semver: < semver > ]
```
2012-05-05 22:33:06 -07:00
2017-07-14 10:52:48 -07:00
`<protocol>` is one of `git` , `git+ssh` , `git+http` , `git+https` , or
`git+file` .
2012-05-05 22:33:06 -07:00
2017-07-14 10:52:48 -07:00
If `#<commit-ish>` is provided, it will be used to clone exactly that
commit. If the commit-ish has the format `#semver:<semver>` , `<semver>` can
be any valid semver range or exact version, and npm will look for any tags
2021-01-15 16:09:24 -05:00
or refs matching that range in the remote repository, much as it would for
a registry dependency. If neither `#<commit-ish>` or `#semver:<semver>` is
2022-07-28 11:03:27 -07:00
specified, then the default branch is used.
2017-07-14 10:52:48 -07:00
Examples:
2019-11-05 14:55:08 -05:00
```bash
git+ssh://git@github .com:npm/cli.git#v1 .0.27
git+ssh://git@github .com:npm/cli#semver: ^5.0
git+https://isaacs@github .com/npm/cli.git
git://github.com/npm/cli.git#v1 .0.27
```
2017-07-14 10:52:48 -07:00
2022-06-13 23:04:21 -07:00
When installing from a `git` repository, the presence of certain fields in the
`package.json` will cause npm to believe it needs to perform a build. To do so
your repository will be cloned into a temporary directory, all of its deps
installed, relevant scripts run, and the resulting directory packed and
installed.
This flow will occur if your git dependency uses `workspaces` , or if any of the
following scripts are present:
* `build`
* `prepare`
* `prepack`
* `preinstall`
* `install`
* `postinstall`
If your git repository includes pre-built artifacts, you will likely want to
make sure that none of the above scripts are defined, or your dependency
will be rebuilt for every installation.
2019-11-05 14:55:08 -05:00
#### GitHub URLs
2013-09-05 17:13:50 -07:00
2024-04-07 14:36:14 -07:00
As of version 1.1.65, you can refer to GitHub URLs as just "foo":
2015-01-08 14:37:26 -08:00
"user/foo-project". Just as with git URLs, a `commit-ish` suffix can be
included. For example:
2013-09-05 17:13:50 -07:00
2019-11-05 14:55:08 -05:00
```json
{
"name": "foo",
"version": "0.0.0",
"dependencies": {
"express": "expressjs/express",
"mocha": "mochajs/mocha#4727d357ea ",
2025-02-02 07:09:59 -08:00
"module": "npm/example-github-repo#feature \/branch"
2019-11-05 14:55:08 -05:00
}
}
```
2013-09-05 17:13:50 -07:00
2019-11-05 14:55:08 -05:00
#### Local Paths
2014-09-24 14:41:07 -07:00
2021-01-15 16:09:24 -05:00
As of version 2.0.0 you can provide a path to a local directory that
contains a package. Local paths can be saved using `npm install -S` or `npm
install --save`, using any of these forms:
2014-09-24 14:41:07 -07:00
2019-11-05 14:55:08 -05:00
```bash
../foo/bar
~/foo/bar
./foo/bar
/foo/bar
```
2014-09-24 14:41:07 -07:00
2014-11-04 15:08:12 -08:00
in which case they will be normalized to a relative path and added to your
`package.json` . For example:
2019-11-05 14:55:08 -05:00
```json
{
"name": "baz",
"dependencies": {
"bar": "file:../foo/bar"
}
}
```
2014-11-04 15:08:12 -08:00
2021-01-15 16:09:24 -05:00
This feature is helpful for local offline development and creating tests
that require npm installing where you don't want to hit an external server,
2024-02-29 07:28:15 -08:00
but should not be used when publishing your package to the public registry.
2014-09-24 14:41:07 -07:00
2022-03-17 20:22:31 +00:00
*note*: Packages linked by local path will not have their own
2025-04-10 14:36:22 -07:00
dependencies installed when `npm install` is run. You must
2022-03-17 20:22:31 +00:00
run `npm install` from inside the local path itself.
2019-11-05 14:55:08 -05:00
### devDependencies
2011-11-21 09:48:45 -08:00
If someone is planning on downloading and using your module in their
2021-01-15 16:09:24 -05:00
program, then they probably don't want or need to download and build the
external test or documentation framework that you use.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
In this case, it's best to map these additional items in a
`devDependencies` object.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
These things will be installed when doing `npm link` or `npm install` from
the root of a package, and can be managed like any other npm configuration
param. See [`config` ](/using-npm/config ) for more on the topic.
2011-11-21 09:48:45 -08:00
2013-08-16 08:19:31 -07:00
For build steps that are not platform-specific, such as compiling
2021-01-15 16:09:24 -05:00
CoffeeScript or other languages to JavaScript, use the `prepare` script to
do this, and make the required package a devDependency.
2013-08-16 08:19:31 -07:00
For example:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
2025-02-02 07:09:59 -08:00
"name": "@npm/ethopia -waza",
2019-11-05 14:55:08 -05:00
"description": "a delightfully fruity coffee varietal",
"version": "1.2.3",
"devDependencies": {
"coffee-script": "~1.6.3"
},
"scripts": {
"prepare": "coffee -o lib/ -c src/waza.coffee"
},
"main": "lib/waza.js"
}
```
2013-08-16 08:19:31 -07:00
2021-01-15 16:09:24 -05:00
The `prepare` script will be run before publishing, so that users can
consume the functionality without requiring them to compile it themselves.
In dev mode (ie, locally running `npm install` ), it'll run this script as
well, so that you can test it easily.
2013-08-16 08:19:31 -07:00
2019-11-05 14:55:08 -05:00
### peerDependencies
2014-04-15 15:31:36 -07:00
2015-06-12 04:04:17 -04:00
In some cases, you want to express the compatibility of your package with a
2014-04-15 15:31:36 -07:00
host tool or library, while not necessarily doing a `require` of this host.
2021-01-15 16:09:24 -05:00
This is usually referred to as a *plugin* . Notably, your module may be
exposing a specific interface, expected and specified by the host
documentation.
2014-04-15 15:31:36 -07:00
For example:
2019-11-05 14:55:08 -05:00
```json
{
2025-02-02 07:09:59 -08:00
"name": "@npm/tea -latte",
2019-11-05 14:55:08 -05:00
"version": "1.3.5",
"peerDependencies": {
2025-02-02 07:09:59 -08:00
"@npm/tea ": "2.x"
2019-11-05 14:55:08 -05:00
}
}
```
2014-04-15 15:31:36 -07:00
2025-02-02 07:09:59 -08:00
This ensures your package `@npm/tea-latte` can be installed *along* with the
second major version of the host package `@npm/tea` only. `npm install
2021-01-15 16:09:24 -05:00
tea-latte` could possibly yield the following dependency graph:
2014-04-15 15:31:36 -07:00
2019-11-05 14:55:08 -05:00
```bash
2025-02-02 07:09:59 -08:00
├── @npm/tea -latte@1 .3.5
└── @npm/tea@2 .2.0
2019-11-05 14:55:08 -05:00
```
2014-04-15 15:31:36 -07:00
2021-01-15 16:09:24 -05:00
In npm versions 3 through 6, `peerDependencies` were not automatically
installed, and would raise a warning if an invalid version of the peer
dependency was found in the tree. As of npm v7, peerDependencies _are_
installed by default.
2015-02-20 09:03:34 -08:00
2021-01-15 16:09:24 -05:00
Trying to install another plugin with a conflicting requirement may cause
an error if the tree cannot be resolved correctly. For this reason, make
sure your plugin requirement is as broad as possible, and not to lock it
down to specific patch versions.
2014-04-15 15:31:36 -07:00
2021-01-15 16:09:24 -05:00
Assuming the host complies with [semver ](https://semver.org/ ), only changes
in the host package's major version will break your plugin. Thus, if you've
worked with every 1.x version of the host package, use `"^1.0"` or `"1.x"`
to express this. If you depend on features introduced in 1.5.2, use
`"^1.5.2"` .
2014-04-15 15:31:36 -07:00
2020-11-03 20:39:24 -05:00
### peerDependenciesMeta
2024-05-16 05:38:49 -07:00
The `peerDependenciesMeta` field serves to provide npm more information on how
2021-01-15 16:09:24 -05:00
your peer dependencies are to be used. Specifically, it allows peer
2024-05-16 05:38:49 -07:00
dependencies to be marked as optional. Npm will not automatically install
optional peer dependencies. This allows you to
integrate and interact with a variety of host packages without requiring
all of them to be installed.
2020-11-03 20:39:24 -05:00
For example:
```json
{
2025-02-02 07:09:59 -08:00
"name": "@npm/tea -latte",
2020-11-03 20:39:24 -05:00
"version": "1.3.5",
"peerDependencies": {
2025-02-02 07:09:59 -08:00
"@npm/tea ": "2.x",
"@npm/soy -milk": "1.2"
2020-11-03 20:39:24 -05:00
},
"peerDependenciesMeta": {
2025-02-02 07:09:59 -08:00
"@npm/soy -milk": {
2020-11-03 20:39:24 -05:00
"optional": true
}
}
}
```
2022-07-21 04:24:12 -07:00
### bundleDependencies
2011-11-21 09:48:45 -08:00
2016-03-29 23:30:51 -07:00
This defines an array of package names that will be bundled when publishing
the package.
In cases where you need to preserve npm packages locally or have them
available through a single file download, you can bundle the packages in a
2022-07-21 04:24:12 -07:00
tarball file by specifying the package names in the `bundleDependencies`
2016-03-29 23:30:51 -07:00
array and executing `npm pack` .
For example:
If we define a package.json like this:
2019-11-05 14:55:08 -05:00
```json
2016-03-29 23:30:51 -07:00
{
2025-02-02 07:09:59 -08:00
"name": "@npm/awesome -web-framework",
2016-03-29 23:30:51 -07:00
"version": "1.0.0",
2022-07-21 04:24:12 -07:00
"bundleDependencies": [
2025-02-02 07:09:59 -08:00
"@npm/renderized ",
"@npm/super -streams"
2016-03-29 23:30:51 -07:00
]
}
```
2021-01-15 16:09:24 -05:00
2025-02-02 07:09:59 -08:00
we can obtain `@npm/awesome-web-framework-1.0.0.tgz` file by running `npm pack` .
This file contains the dependencies `@npm/renderized` and `@npm/super-streams` which
2016-03-29 23:30:51 -07:00
can be installed in a new project by executing `npm install
2021-01-15 16:09:24 -05:00
awesome-web-framework-1.0.0.tgz`. Note that the package names do not
include any versions, as that information is specified in `dependencies` .
2011-11-21 09:48:45 -08:00
2022-07-21 04:24:12 -07:00
If this is spelled `"bundledDependencies"` , then that is also honored.
2011-11-21 09:48:45 -08:00
2022-07-21 04:24:12 -07:00
Alternatively, `"bundleDependencies"` can be defined as a boolean value. A
2022-02-07 22:15:05 +02:00
value of `true` will bundle all dependencies, a value of `false` will bundle
none.
2019-11-05 14:55:08 -05:00
### optionalDependencies
2012-06-04 17:32:46 -07:00
2021-01-15 16:09:24 -05:00
If a dependency can be used, but you would like npm to proceed if it cannot
be found or fails to install, then you may put it in the
`optionalDependencies` object. This is a map of package name to version or
2024-04-07 14:36:14 -07:00
URL, just like the `dependencies` object. The difference is that build
2021-01-15 16:09:24 -05:00
failures do not cause installation to fail. Running `npm install
2022-08-17 21:52:05 -07:00
--omit=optional` will prevent these dependencies from being installed.
2012-06-04 17:32:46 -07:00
It is still your program's responsibility to handle the lack of the
dependency. For example, something like this:
2019-11-05 14:55:08 -05:00
```js
try {
2025-02-02 07:09:59 -08:00
var foo = require('@npm/foo ')
var fooVersion = require('@npm/foo/package .json').version
2019-11-05 14:55:08 -05:00
} catch (er) {
foo = null
}
if ( notGoodFooVersion(fooVersion) ) {
foo = null
}
2012-06-04 17:32:46 -07:00
2019-11-05 14:55:08 -05:00
// .. then later in your program ..
2012-06-04 17:32:46 -07:00
2019-11-05 14:55:08 -05:00
if (foo) {
foo.doFooThings()
}
```
2012-06-04 17:32:46 -07:00
Entries in `optionalDependencies` will override entries of the same name in
`dependencies` , so it's usually best to only put in one place.
2021-12-09 21:20:18 +00:00
### overrides
If you need to make specific changes to dependencies of your dependencies, for
example replacing the version of a dependency with a known security issue,
replacing an existing dependency with a fork, or making sure that the same
version of a package is used everywhere, then you may add an override.
Overrides provide a way to replace a package in your dependency tree with
another version, or another package entirely. These changes can be scoped as
specific or as vague as desired.
2024-04-30 23:53:22 -07:00
Overrides are only considered in the root `package.json` file for a project.
Overrides in installed dependencies (including
[workspaces ](/using-npm/workspaces )) are not considered in dependency tree
resolution. Published packages may dictate their resolutions by pinning
dependencies or using an
[`npm-shrinkwrap.json` ](/configuring-npm/npm-shrinkwrap-json ) file.
2021-12-09 21:20:18 +00:00
To make sure the package `foo` is always installed as version `1.0.0` no matter
what version your dependencies rely on:
```json
{
"overrides": {
2025-02-02 07:09:59 -08:00
"@npm/foo ": "1.0.0"
2021-12-09 21:20:18 +00:00
}
}
```
The above is a short hand notation, the full object form can be used to allow
overriding a package itself as well as a child of the package. This will cause
2025-02-02 07:09:59 -08:00
`@npm/foo` to always be `1.0.0` while also making `@npm/bar` at any depth beyond `@npm/foo`
2021-12-09 21:20:18 +00:00
also `1.0.0` :
```json
{
"overrides": {
2025-02-02 07:09:59 -08:00
"@npm/foo ": {
2021-12-09 21:20:18 +00:00
".": "1.0.0",
2025-02-02 07:09:59 -08:00
"@npm/bar ": "1.0.0"
2021-12-09 21:20:18 +00:00
}
}
}
```
2025-02-02 07:09:59 -08:00
To only override `@npm/foo` to be `1.0.0` when it's a child (or grandchild, or great
2025-04-10 14:36:22 -07:00
grandchild, etc) of the package `@npm/bar` :
2021-12-09 21:20:18 +00:00
```json
{
"overrides": {
2025-02-02 07:09:59 -08:00
"@npm/bar ": {
"@npm/foo ": "1.0.0"
2021-12-09 21:20:18 +00:00
}
}
}
```
2025-02-02 07:09:59 -08:00
Keys can be nested to any arbitrary length. To override `@npm/foo` only when it's a
child of `@npm/bar` and only when `@npm/bar` is a child of `@npm/baz` :
2021-12-09 21:20:18 +00:00
```json
{
"overrides": {
2025-02-02 07:09:59 -08:00
"@npm/baz ": {
"@npm/bar ": {
"@npm/foo ": "1.0.0"
2021-12-09 21:20:18 +00:00
}
}
}
}
```
The key of an override can also include a version, or range of versions.
2025-02-02 07:09:59 -08:00
To override `@npm/foo` to `1.0.0` , but only when it's a child of `@npm/bar@2.0.0` :
2021-12-09 21:20:18 +00:00
```json
{
"overrides": {
2025-02-02 07:09:59 -08:00
"@npm/bar@2 .0.0": {
"@npm/foo ": "1.0.0"
2021-12-09 21:20:18 +00:00
}
}
}
```
You may not set an override for a package that you directly depend on unless
both the dependency and the override itself share the exact same spec. To make
this limitation easier to deal with, overrides may also be defined as a
reference to a spec for a direct dependency by prefixing the name of the
package you wish the version to match with a `$` .
```json
{
"dependencies": {
2025-02-02 07:09:59 -08:00
"@npm/foo ": "^1.0.0"
2021-12-09 21:20:18 +00:00
},
"overrides": {
// BAD, will throw an EOVERRIDE error
// "foo": "^2.0.0"
// GOOD, specs match so override is allowed
// "foo": "^1.0.0"
// BEST, the override is defined as a reference to the dependency
2025-02-02 07:09:59 -08:00
"@npm/foo ": "$foo",
2021-12-09 21:20:18 +00:00
// the referenced package does not need to match the overridden one
2025-02-02 07:09:59 -08:00
"@npm/bar ": "$foo"
2021-12-09 21:20:18 +00:00
}
}
```
2019-11-05 14:55:08 -05:00
### engines
2011-11-21 09:48:45 -08:00
2012-06-28 19:08:32 -07:00
You can specify the version of node that your stuff works on:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"engines": {
"node": ">=0.10.3 < 15 "
}
}
2019-11-05 14:55:08 -05:00
```
2011-11-21 09:48:45 -08:00
And, like with dependencies, if you don't specify the version (or if you
2012-05-05 22:33:06 -07:00
specify "\*" as the version), then any version of node will do.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
You can also use the "engines" field to specify which versions of npm are
capable of properly installing your program. For example:
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"engines": {
"npm": "~1.0.20"
}
}
2019-11-05 14:55:08 -05:00
```
2011-11-21 09:48:45 -08:00
2022-12-06 22:18:33 -05:00
Unless the user has set the
[`engine-strict` config ](/using-npm/config#engine-strict ) flag, this field is
advisory only and will only produce warnings when your package is installed as a
dependency.
2012-06-28 19:08:32 -07:00
2019-11-05 14:55:08 -05:00
### os
2012-05-05 22:33:06 -07:00
You can specify which operating systems your
module will run on:
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"os": [
"darwin",
"linux"
]
}
2019-11-05 14:55:08 -05:00
```
2012-05-05 22:33:06 -07:00
2021-01-15 16:09:24 -05:00
You can also block instead of allowing operating systems, just prepend the
blocked os with a '!':
2012-05-05 22:33:06 -07:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"os": [
"!win32"
]
}
2019-11-05 14:55:08 -05:00
```
2012-05-05 22:33:06 -07:00
The host operating system is determined by `process.platform`
2020-10-02 17:52:19 -04:00
It is allowed to both block and allow an item, although there isn't any
2012-05-05 22:33:06 -07:00
good reason to do this.
2019-11-05 14:55:08 -05:00
### cpu
2012-05-05 22:33:06 -07:00
If your code only runs on certain cpu architectures,
you can specify which ones.
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"cpu": [
"x64",
"ia32"
]
}
2019-11-05 14:55:08 -05:00
```
2012-05-05 22:33:06 -07:00
2020-10-02 17:52:19 -04:00
Like the `os` option, you can also block architectures:
2012-05-05 22:33:06 -07:00
2019-11-05 14:55:08 -05:00
```json
2021-01-15 16:09:24 -05:00
{
"cpu": [
"!arm",
"!mips"
]
}
2019-11-05 14:55:08 -05:00
```
2012-05-05 22:33:06 -07:00
The host architecture is determined by `process.arch`
2025-01-10 08:20:27 -08:00
### libc
If your code only runs or builds in certain versions of libc, you can
specify which ones. This field only applies if `os` is `linux` .
```json
{
"os": "linux",
"libc": "glibc"
}
```
2024-10-05 06:54:06 -07:00
### devEngines
The `devEngines` field aids engineers working on a codebase to all be using the same tooling.
You can specify a `devEngines` property in your `package.json` which will run before `install` , `ci` , and `run` commands.
> Note: `engines` and `devEngines` differ in object shape. They also function very differently. `engines` is designed to alert the user when a dependency uses a differening npm or node version that the project it's being used in, whereas `devEngines` is used to alert people interacting with the source code of a project.
The supported keys under the `devEngines` property are `cpu` , `os` , `libc` , `runtime` , and `packageManager` . Each property can be an object or an array of objects. Objects must contain `name` , and optionally can specify `version` , and `onFail` . `onFail` can be `warn` , `error` , or `ignore` , and if left undefined is of the same value as `error` . `npm` will assume that you're running with `node` .
Here's an example of a project that will fail if the environment is not `node` and `npm` . If you set `runtime.name` or `packageManager.name` to any other string, it will fail within the npm CLI.
```json
{
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
}
}
```
2019-11-05 14:55:08 -05:00
### private
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
If you set `"private": true` in your package.json, then npm will refuse to
publish it.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
This is a way to prevent accidental publication of private repositories.
If you would like to ensure that a given package is only ever published to
a specific registry (for example, an internal registry), then use the
`publishConfig` dictionary described below to override the `registry`
config param at publish-time.
2011-11-21 09:48:45 -08:00
2019-11-05 14:55:08 -05:00
### publishConfig
2011-11-21 09:48:45 -08:00
2015-07-31 17:08:03 -07:00
This is a set of config values that will be used at publish-time. It's
especially handy if you want to set the tag, registry or access, so that
you can ensure that a given package is not tagged with "latest", published
2021-01-15 16:09:24 -05:00
to the global public registry or that a scoped module is private by
default.
2011-11-21 09:48:45 -08:00
2021-01-15 16:09:24 -05:00
See [`config` ](/using-npm/config ) to see the list of config options that
can be overridden.
2011-11-21 09:48:45 -08:00
2020-10-15 20:32:02 -04:00
### workspaces
The optional `workspaces` field is an array of file patterns that describes
2021-01-15 16:09:24 -05:00
locations within the local file system that the install client should look
up to find each [workspace ](/using-npm/workspaces ) that needs to be
symlinked to the top level `node_modules` folder.
2020-10-15 20:32:02 -04:00
It can describe either the direct paths of the folders to be used as
workspaces or it can define globs that will resolve to these same folders.
2021-01-15 16:09:24 -05:00
In the following example, all folders located inside the folder
`./packages` will be treated as workspaces as long as they have valid
`package.json` files inside them:
2020-10-15 20:32:02 -04:00
```json
{
"name": "workspace-example",
"workspaces": [
"./packages/*"
]
}
```
See [`workspaces` ](/using-npm/workspaces ) for more examples.
2019-11-05 14:55:08 -05:00
### DEFAULT VALUES
2014-01-06 17:02:07 -08:00
npm will default some values based on package contents.
* `"scripts": {"start": "node server.js"}`
2021-01-15 16:09:24 -05:00
If there is a `server.js` file in the root of your package, then npm will
default the `start` command to `node server.js` .
2014-01-06 17:02:07 -08:00
2016-05-27 14:07:59 -07:00
* `"scripts":{"install": "node-gyp rebuild"}`
2014-01-06 17:02:07 -08:00
2021-01-15 16:09:24 -05:00
If there is a `binding.gyp` file in the root of your package and you have
not defined an `install` or `preinstall` script, npm will default the
`install` command to compile using node-gyp.
2014-01-06 17:02:07 -08:00
* `"contributors": [...]`
2021-01-15 16:09:24 -05:00
If there is an `AUTHORS` file in the root of your package, npm will treat
each line as a `Name <email> (url)` format, where email and url are
optional. Lines which start with a `#` or are blank, will be ignored.
2014-01-06 17:02:07 -08:00
2019-11-05 14:55:08 -05:00
### SEE ALSO
2021-01-28 17:38:39 -05:00
* [semver ](https://github.com/npm/node-semver#versions )
2020-10-15 20:32:02 -04:00
* [workspaces ](/using-npm/workspaces )
2020-11-01 07:54:36 +01:00
* [npm init ](/commands/npm-init )
* [npm version ](/commands/npm-version )
* [npm config ](/commands/npm-config )
* [npm help ](/commands/npm-help )
* [npm install ](/commands/npm-install )
* [npm publish ](/commands/npm-publish )
* [npm uninstall ](/commands/npm-uninstall )