Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: keithamus/sort-package-json
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.28.0
Choose a base ref
...
head repository: keithamus/sort-package-json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.29.0
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Dec 3, 2019

  1. feat: add mocha field (#89)

    fisker authored and keithamus committed Dec 3, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    Fryuni Luiz Ferraz
    Copy the full SHA
    8b2bac4 View commit details
  2. feat: add exports field (#88)

    fisker authored and keithamus committed Dec 3, 2019
    Copy the full SHA
    092b9d7 View commit details
Showing with 5 additions and 0 deletions.
  1. +1 −0 README.md
  2. +4 −0 index.js
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -94,6 +94,7 @@ npx sort-package-json
- [eslint](https://eslint.org/)
- [jest](https://jestjs.io/)
- [Istanbul](https://istanbul.js.org/)
- [Mocha](https://mochajs.org/)
- [xo](https://github.com/xojs/xo)
- [prettier](https://prettier.io/)

4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ const sortOrder = [
'files',
'sideEffects',
'type',
'exports',
'main',
'umd:main',
'jsdelivr',
@@ -55,6 +56,7 @@ const sortOrder = [
'stylelint',
'ava',
'jest',
'mocha',
'nyc',
'dependencies',
'devDependencies',
@@ -163,6 +165,7 @@ function sortPackageJson(packageJson, options = {}) {
sortSubKey('bugs', ['url', 'email']);
sortSubKey('license', ['type', 'url']);
sortSubKey('author', ['name', 'email', 'url']);
sortSubKey('exports');
sortSubKey('bin');
sortSubKey('man');
sortSubKey('directories', ['lib', 'bin', 'man', 'doc', 'example']);
@@ -179,6 +182,7 @@ function sortPackageJson(packageJson, options = {}) {
sortSubKey('eslintConfig');
sortSubKey('ava');
sortSubKey('jest');
sortSubKey('mocha');
sortSubKey('nyc');
sortSubKey('xo');
sortSubKey('prettier');