The two most important fields in your package.json
are name
and version
,
without them your package won’t be able to install. The name
and version
fields are used together to create a unique id.
name
{
"name": "my-awesome-package"
}
This is the name of your package. It gets used in URLs, as an argument on the
command line, and as the directory name inside node_modules
.
yarn add [name]
node_modules/[name]
https://registry.npmjs.org/[name]/-/[name]-[version].tgz
Rules
@scope/
for
scoped packages)..
) or an underscore (_
).Tips
js
or node
in the name.require()
calls.version
{
"version": "1.0.0"
}
The current version of your package.
description
{
"description": "My short description of my awesome package"
}
The description is just a string that helps people understand the purpose of the package. It can be used when searching for packages in a package manager as well.
keywords
{
"keywords": ["short", "relevant", "keywords", "for", "searching"]
}
Keywords are an array of strings that are useful when searching for packages in a package manager.
license
{
"license": "MIT",
"license": "(MIT or GPL-3.0)",
"license": "SEE LICENSE IN LICENSE_FILENAME.txt",
"license": "UNLICENSED"
}
All packages should specify a license so that users know how they are permitted to use it and any restrictions that you are placing on it.
You are encouraged to use an Open Source (OSI-approved) license unless you have a specific reason not to. If you built your package as part of your job it’s likely best to check with your company before deciding on a license.
Must be one of the following:
SEE LICENSE IN <filename>
string that points to a <filename>
in the top
level of your package if you are using a non-standard license.UNLICENSED
string if you do not want to grant others the right to use a
private or unpublished package under any terms.Various links to documentation, places to file issues and where your package code actually lives.
homepage
{
"homepage": "https://your-package.org"
}
The homepage is the URL to the landing page or documentation for your package.
bugs
{
"bugs": "https://github.com/user/repo/issues"
}
The URL to your project’s issue tracker. This can also be something like an email address as well. It provides users a way to find out where to send issues with your package.
repository
{
"repository": { "type": "git", "url": "https://github.com/user/repo.git" },
"repository": "github:user/repo",
"repository": "gitlab:user/repo",
"repository": "bitbucket:user/repo",
"repository": "gist:a1b2c3d4e5f"
}
The repository is the location where your the actual code for your package lives.
The maintainers of your project.
author
{
"author": { "name": "Your Name", "email": "you@example.com", "url": "http://your-website.com" },
"author": "Your Name <you@example.com> (http://your-website.com)"
}
Package author information. An author is one person.
contributors
{
"contributors": [
{ "name": "Your Friend", "email": "friend@example.com", "url": "http://friends-website.com" }
{ "name": "Other Friend", "email": "other@example.com", "url": "http://other-website.com" }
],
"contributors": [
"Your Friend <friend@example.com> (http://friends-website.com)",
"Other Friend <other@example.com> (http://other-website.com)"
]
}
Those that have contributed to your package. Contributors are an array of people.
You can specify files that will be included in your project, along with the main entry point for your project.
files
{
"files": [
"filename.js",
"directory/",
"glob/*.{js,json}"
]
}
These are files that are included in your project. You can specify single files, whole directories or use wildcards to include files that meet a certain criteria.
main
{
"main": "filename.js"
}
This is the primary entry point for the functionality for your project.
bin
{
"bin": "bin.js",
"bin": {
"command-name": "bin/command-name.js",
"other-command": "bin/other-command"
}
}
Executable files included with your project that will be installed.
man
{
"man": "./man/doc.1",
"man": ["./man/doc.1", "./man/doc.2"]
}
If you have man pages associated with your project, add them here.
directories
{
"directories": {
"lib": "path/to/lib/",
"bin": "path/to/bin/",
"man": "path/to/man/",
"doc": "path/to/doc/",
"example": "path/to/example/"
}
}
When installing your package, you can specify exact locations to put binary files, man pages, documentation, examples, etc.
Your package can include runnable scripts or other configuration.
scripts
{
"scripts": {
"build-project": "node build-project.js"
}
}
Scripts are a great way of automating tasks related to your package, such as simple build processes or development tools. Using the "scripts"
field, you can define various scripts to be run as yarn run <script>
. For example, the build-project
script above can be invoked with yarn run build-project
and will run node build-project.js
.
Certain script names are special. If defined, the preinstall
script is called by yarn before your package is installed. For compatibility reasons, scripts called install
, postinstall
, and prepublish
will all be called after your package has finished installing.
config
{
"config": {
"port": "8080"
}
}
Configuration options or parameters used in your scripts.
Your package will very likely depend on other packages. You can specify those dependencies in your package.json
file.
dependencies
{
"dependencies": {
"package-1": "^3.1.4"
}
}
These are dependencies that are required in both development and production for your package.
You can specify an exact version, a minimum version (e.g.,
>=
) or a range of versions (e.g.>= ... <
).
devDependencies
{
"devDependencies": {
"package-2": "^0.4.2"
}
}
These are packages that are only required when developing your package but will not be installed in production.
peerDependencies
{
"peerDependencies": {
"package-3": "^2.7.18"
}
}
Peer dependencies allow you to state compatibility of your package with versions of other packages.
optionalDependencies
{
"optionalDependencies": {
"package-5": "^1.6.1"
}
}
Optional dependencies can be used with your package, but are not required. If the optional package is not found, installation still continues.
bundledDependencies
{
"bundledDependencies": [
"package-4"
]
}
Bundled dependencies are an array of package names that will be bundled together when publishing your package.
flat
{
"flat": true
}
If your package only allows one version of a given dependency, and you’d like to enforce the same behavior as yarn install --flat
on the command line, set this to true
.
Note that if your package.json
contains "flat": true
and other packages depend on yours (e.g. you are building a library rather than an application), those other packages will also need "flat": true
in their package.json
or be installed with yarn install --flat
on the command line.
You can provide system-level information associated with your package, such as operating system compatibility, etc.
engines
{
"engines": {
"node": ">=4.4.7 <7.0.0",
"zlib": "^1.2.8",
"yarn": "^0.14.0"
}
}
The engines specify versions of clients that must be used with your package. This checks against process.versions
as well as the current version of yarn.
os
{
"os": ["darwin", "linux"],
"os": ["!win32"]
}
This specifies operating system compatibility for your package. It checks against process.platform
.
cpu
{
"cpu": ["x64", "ia32"],
"cpu": ["!arm", "!mips"]
}
Use this to specify your package will only run on certain CPU architectures. This checks against process.arch
.
private
{
"private": true
}
If you do not want your package published in a package manager, set this to true
.
publishConfig
{
"publishConfig": {
...
}
}
These configuration values will be used when publishing your package. You can tag your package, for example.
← 이전: Configuration 다음: yarn.lock →