Navigate back to the homepage

Understanding the package.json file

Ezekiel Ekunola
February 23rd, 2020 · 3 min read

What is a package.json file

A package.json is a JSON file that exists at the root of a Javascript/Node project. It holds metadata relevant to the project and it is used for managing the project’s dependencies, scripts, version and a whole lot more.

Creating a package.json file

There are two ways of creating/generating a package.json file.

  • Npm or Yarn

    To create the package.json file with npm, run npm init on your terminal.

    To use this method, you need to have Node installed on your system.

    To create the package.json file with yarn, run yarn init on your terminal.

    To use the yarn method, you need to have Node and Yarn installed on your system.

    Note: Throughout the course of this article, I would make use of npm commands for showing examples of how to do perform specific tasks, if you prefer making use of yarn, check here for the yarn CLI commands.

    After running the command, it should ask for some information about the project and generate a package.json file in the root of your project. The generated file should look like the example below.

    1{
    2 "name": "storemanager",
    3 "version": "1.0.0",
    4 "description": "",
    5 "main": "index.js",
    6 "directories": {
    7 "test": "test"
    8 },
    9 "scripts": {
    10 "test": "echo \"Error: no test specified\" && exit 1"
    11 },
    12 "keywords": [],
    13 "author": "",
    14 "license": "ISC"
    15}

    Note: You can also run npm init -y or yarn init -y to generate the package.json file with default values.

  • Manually

    To create the file manually, create a package.json file manually in the root of the project, and add an empty object with the required properties, which are name and version. It should look like the example below.

    1{
    2 "name": "storemanager",
    3 "version": "1.0.0"
    4}

Properties of a package.json file

name

The name property is a required field in the package.json file, it represents the name of the project. There are rules you need to follow when specifying a name for your project in the package.json file.

  • must be lowercase
  • must be one word
  • can contain hyphens and underscores
  • should not start with an underscore(_) or dot(.)
1"name": "package.json-mastery"

version

The version is also a required field in the package.json file. The property denotes the current version of the module for the project. The rule required for the version field is that it needs to follow the semantic versioning guidelines e.g 1.0.2

1"version": "1.0.0"

description

The description property is used in describing and providing more information about the project.

1"description": "Mastery of the package.json file"

engines

The engines property is a JSON object of key/value pairs that are used to denote/specify the version of the libraries and runtimes on which the application should run.

1"engines": {
2 "npm": "6.10.0",
3 "node": "10.14.1"
4 }

dependencies

The dependencies property denotes the list of the required modules/packages for your application to function. After installing a dependency, it is added to the dependencies list.

1"dependencies": {
2 "bcryptjs": "^2.4.3",
3 "cors": "^2.8.5",
4 "dotenv": "^6.1.0",
5 "express": "^4.16.4",
6}

To install a dependency, run npm i package or npm install package on your terminal. Where the package is the name of the package you are trying to install.

For example, to install axios dependency, run npm install axios on your terminal.

devDependencies

The devDependencies property denotes the list of modules/packages that are not required for your application to function. They are also known as development dependencies.

1"devDependencies": {
2 "eslint": "^4.19.1",
3 "mocha": "^6.2.0",
4 "nodemon": "^1.19.1",
5 }

To install a devDependency, run npm i package --save-dev or npm install package -D on your terminal. Where the package is the name of the package you are trying to install.

For example, to install chai devDependency, run npm install chai --save-dev on your terminal.

scripts

The script property takes a JSON object of key/value pairs. Each script can be used in performing different sets of tasks, like building, testing, linting the application. You can run the scripts by running npm run scriptname, or yarn scriptname on the terminal.

1"scripts": {
2 "start": "node index",
3 "dev": "nodemon index",
4 "test": "jest",
5 "lint": "eslint ./server",
6 }

For example, to execute the dev script in the example above, run npm run dev or yarn dev on your terminal.

main

The main property serves as the entry point of your application and should point to the file that serves as the entry point to your application.

1"main": "app.js"

homepage

The homepage property is used to specify the landing page for the application/package.

1"homepage": "https://github.com/Easybuoy/package.json-mastery#readme",

private

The private property is false by default but can be set to true to prevent the application/package to be published.

1"private": true

license

This property denotes the type of license that’s being used by the project

1"license": "MIT"

author

This property denotes the creator/owner of the project

1"author": "Ezekiel Ekunola"

repository

The repository keyword is a JSON object of key/value pairs that are used to specify the version control system being used to manage the application. You can specify the type of version control being used, the URL to the repository, as well as an optional directory within the repository.

1"repository": {
2 "type": "git",
3 "url": "git+https://github.com/Easybuoy/package.json-mastery.git"
4 }

bugs

The bugs property is used to point to the issues page of the repository for the application or anywhere the project issues can be reported.

1"bugs": {
2 "url": "https://github.com/Easybuoy/package.json-mastery/issues"
3 }

keywords

The keywords property is an array of keywords that helps in identifying your project or make your project easier to find when a user searches those keywords.

1"keywords": ["node", "javascript", "npm", "yarn"]

Custom Properties

The package.json file can also be used for package specific commands like Babel, ESLint, Jest and lots more. You can find the usage in the package documentation.

Find an example of a custom property for Jest below.

1"jest": {
2 "snapshotSerializers": [
3 "enzyme-to-json/serializer"
4 ]
5 }

After combining all the properties explained above, we can end up having a package.json file looking like the example below

1{
2 "name": "package.json-mastery",
3 "version": "1.0.0",
4 "description": "Mastery of the package.json file",
5 "private": false,
6 "main": "index.js",
7 "scripts": {
8 "start": "node index",
9 "dev": "nodemon index",
10 "test": "jest"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/Easybuoy/package.json-mastery.git"
15 },
16 "keywords": [
17 "node",
18 "javascript",
19 "npm",
20 "yarn"
21 ],
22 "author": "Ezekiel Ekunola",
23 "license": "ISC",
24 "bugs": {
25 "url": "https://github.com/Easybuoy/package.json-mastery/issues"
26 },
27 "homepage": "https://github.com/Easybuoy/package.json-mastery#readme",
28 "engines": {
29 "npm": "6.10.0",
30 "node": "10.14.1"
31 },
32 "dependencies": {
33 "bcryptjs": "^2.4.3",
34 "cors": "^2.8.5",
35 "dotenv": "^6.1.0",
36 "express": "^4.16.4"
37 },
38 "devDependencies": {
39 "eslint": "^4.19.1",
40 "mocha": "^6.2.0",
41 "nodemon": "^1.19.1"
42 },
43 "nyc": {
44 "exclude": [
45 "server/app.js",
46 "server/config/",
47 "server/build"
48 ]
49 }
50}

Conclusion

In this article, we’ve been able to see what a package.json file is, how to create it, the different properties and their use cases.

There are still so many more properties that can be specified in the package.json file, if you want to go in-depth, check here.

If you have any questions or feedback, please feel free to reach out on Twitter.

Thanks for reading.

More articles from easybuoy

Setting up Domain with Namecheap & Netlify

In this article, I would be showing how to connect...

January 22nd, 2020 · 1 min read

My 2019 Year In Review

Early this year, I read...

December 31st, 2019 · 5 min read
© 2018–2020 easybuoy
Link to $https://twitter.com/easybuoyLink to $https://github.com/easybuoy/Link to $https://instagram.com/easybuoy19Link to $https://www.linkedin.com/in/easybuoy/