Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
afbcc03
Squashing Commits to single commit
abisalehalliprasan Sep 30, 2019
bbd13f4
Merge branch 'master' into develop
abisalehalliprasan Sep 30, 2019
7702bba
.npmignore changes fixed
abisalehalliprasan Sep 30, 2019
5050818
.npmignore changes fixed
abisalehalliprasan Sep 30, 2019
f4379bb
Implementing Github Actions : develop branch
abisalehalliprasan Oct 3, 2019
ad56e5f
Fix/eslint formatting (#38)
mcrosby114 Oct 5, 2019
109a0d3
Added require statement for global mocha functions to fix linting err…
hallzac2 Oct 7, 2019
03249de
Fixed README.md missing/broken links (#42)
MDBoticano Oct 9, 2019
90cfde4
added test for 'clearTest' function (#44)
Rockleeland Oct 10, 2019
15072f4
Adding Develop Code Coverage Badge
abisalehalliprasan Oct 10, 2019
3a8d6af
Merge branch 'develop' of https://github.com/intuit/oauth-jsclient in…
abisalehalliprasan Oct 10, 2019
28f52be
test(AuthResponse) Add Additional unit tests for AuthResponse (#47)
edgarsherman Oct 10, 2019
4cdaee8
Upgrade ngrok to 3.2.5 in the sample app. (#45)
petmat Oct 14, 2019
1b598c4
test(OAuthClient) Add Additional unit tests for OAuthClient (#47) (#49)
edgarsherman Oct 16, 2019
74fdbfa
Provide support for other HTTP methods, headers, and body content (#48)
brycejech Oct 16, 2019
81c8cd7
Fix eslint issues develop (#51)
nehapatwardhan6490 Oct 17, 2019
640dad9
Release Candidate 2.0.0
abisalehalliprasan Oct 17, 2019
ec3f14a
Release Candidate 2.0.0
abisalehalliprasan Oct 18, 2019
3685c8f
Release Candidate 2.0.0
abisalehalliprasan Oct 18, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Release Candidate 2.0.0
  • Loading branch information
abisalehalliprasan committed Oct 17, 2019
commit 640dad95707b581434fdb9bd565e3c39ad91fda4
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ script:
- npm test

after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[![Build Status](https://travis-ci.org/intuit/oauth-jsclient.svg?branch=master)](https://travis-ci.org/intuit/oauth-jsclient)
[![NPM Package Version](https://img.shields.io/npm/v/intuit-oauth.svg?style=flat-square)](https://www.npmjs.com/package/intuit-oauth)
[![Coverage Status](https://coveralls.io/repos/github/intuit/oauth-jsclient/badge.svg?branch=develop)](https://coveralls.io/github/intuit/oauth-jsclient?branch=develop)
[![Coverage Status](https://coveralls.io/repos/github/intuit/oauth-jsclient/badge.svg?branch=master)](https://coveralls.io/github/intuit/oauth-jsclient?branch=master)

# Intuit OAuth2.0 NodeJS Library

Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "intuit-oauth",
"version": "1.5.0",
"description": "Intuit Node.js client for OAuth2.0 and OpenID",
"version": "2.0.0",
"description": "Intuit Node.js client for OAuth2.0 and OpenIDConnect",
"main": "./src/OAuthClient.js",
"scripts": {
"start": "node index.js",
Expand Down Expand Up @@ -76,7 +76,8 @@
"popsicle": "10.0.1",
"query-string": "6.2.0",
"rsa-pem-from-mod-exp": "^0.8.4",
"winston": "^3.1.0"
"winston": "^3.1.0",
"coveralls": "3.0.2"
},
"devDependencies": {
"body-parser": "^1.15.2",
Expand Down
2 changes: 1 addition & 1 deletion sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This is a `sample` app built using Node.js and Express Framework to showcase how

### Requirements

* [Node.js](http://nodejs.org) >= 6.0.0
* [Node.js](http://nodejs.org) >= 7.0.0
* [Intuit Developer](https://developer.intuit.com) Account

### Via Github Repo (Recommended)
Expand Down