Skip to content

Commit 036c92d

Browse files
fiskerkeithamus
authored andcommittedNov 29, 2019
feat: add ava field (#80)
* feat: add `ava` field * docs: add ava link
1 parent 5e53abb commit 036c92d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ npx sort-package-json
8888

8989
### Supported Libraries
9090

91+
- [AVA](https://github.com/avajs/ava)
9192
- [bowserify](http://browserify.org/)
9293
- [babel](https://babeljs.io/)
9394
- [eslint](https://eslint.org/)

‎index.js

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ const sortOrder = [
5252
'eslintConfig',
5353
'eslintIgnore',
5454
'stylelint',
55+
'ava',
5556
'jest',
5657
'dependencies',
5758
'devDependencies',
@@ -173,6 +174,7 @@ function sortPackageJson(packageJson, options = {}) {
173174
sortSubKey('browserify');
174175
sortSubKey('babel');
175176
sortSubKey('eslintConfig');
177+
sortSubKey('ava');
176178
sortSubKey('jest');
177179
sortSubKey('xo');
178180
sortSubKey('prettier');

0 commit comments

Comments
 (0)
Please sign in to comment.