Skip to content

Commit ca10d60

Browse files
author
Jonathon Hill
committed
chore(package): Drop support for Node.js < 14
BREAKING CHANGE: Dropped support for Node.js < 14
1 parent 146e53c commit ca10d60

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
language: node_js
22

33
node_js:
4-
- 10
5-
- 12
64
- 14
5+
- 16
6+
- stable
7+
8+
script: make test

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
# axios-oauth-client
22

3-
[![Build Status](https://travis-ci.org/compwright/axios-oauth-client.svg?branch=master)](https://travis-ci.org/compwright/axios-oauth-client) [![Greenkeeper badge](https://badges.greenkeeper.io/compwright/axios-oauth-client.svg)](https://greenkeeper.io/)
3+
[![Build Status](https://app.travis-ci.com/compwright/axios-oauth-client.svg?branch=master)](https://app.travis-ci.com/github/compwright/axios-oauth-client)
44

55
OAuth 2.0 client utils for axios
66

77
## Installation
88

9+
With NPM:
10+
911
```bash
1012
$ npm install --save axios-oauth-client axios
1113
```
1214

15+
With Yarn:
16+
17+
```bash
18+
$ yarn add axios-oauth-client axios
19+
```
20+
1321
## Axios OAuth 2.0 Client
1422

1523
### Authorization Code grant

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"homepage": "https://github.com/compwright/axios-oauth-client#readme",
2121
"type": "module",
2222
"engines": {
23-
"node": ">= 16"
23+
"node": ">= 14"
2424
},
2525
"exports": {
2626
".": {

0 commit comments

Comments
 (0)