Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "nvp-json", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "A bidirectional NVP/JSON parser for use with PayPal NVP APIs.", | ||
@@ -11,6 +11,5 @@ "main": "index.js", | ||
"start": "node index.js", | ||
"test": "istanbul cover _mocha", | ||
"test-with-coverage": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage", | ||
"lint": "./node_modules/.bin/eslint .", | ||
"lint-fix": "./node_modules/.bin/eslint --fix ." | ||
"test": "npm run lint && npm run testOnly", | ||
"testOnly": "nyc --reporter=html --reporter=text mocha ./test/**/*.spec.js", | ||
"lint": "eslint . --ext .js" | ||
}, | ||
@@ -25,5 +24,5 @@ "repository": { | ||
"homepage": "https://github.com/carriejv/nvp-json-js", | ||
"author": "Carrie Vrtis <carrie@carriejv.com> (https://www.carrievrtis.com)", | ||
"author": "Carrie Vrtis <carrie@carriejv.com> (https://www.carriejv.com)", | ||
"contributors": [ | ||
"Carrie Vrtis <carrie@carriejv.com> (https://www.carrievrtis.com)" | ||
"Carrie Vrtis <carrie@carriejv.com> (https://www.carriejv.com)" | ||
], | ||
@@ -45,12 +44,6 @@ "keywords": [ | ||
"codacy-coverage": "^3.4.0", | ||
"eslint": "^5.15.3", | ||
"eslint-config-airbnb-base": "^13.1.0", | ||
"eslint-plugin-import": "^2.16.0", | ||
"eslint-plugin-node": "^8.0.1", | ||
"eslint-plugin-promise": "^4.0.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"istanbul": "^0.4.5", | ||
"mocha": "^5.2.0", | ||
"mocha-lcov-reporter": "^1.3.0" | ||
"eslint": "^7.16.0", | ||
"mocha": "^8.2.1", | ||
"nyc": "^15.1.0" | ||
} | ||
} |
# nvp-json | ||
[![npm version](https://img.shields.io/npm/v/nvp-json.svg)](https://www.npmjs.com/package/nvp-json) [![Build Status](https://img.shields.io/travis/carriejv/nvp-json-js.svg)](https://travis-ci.org/carriejv/nvp-json-js) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/9065cebcf7384259bac3bce3d502d97e)](https://www.codacy.com/app/carriejv/nvp-json-js?utm_source=github.com&utm_medium=referral&utm_content=carriejv/nvp-json-js&utm_campaign=Badge_Grade) [![Codacy Coverage](https://api.codacy.com/project/badge/Coverage/62203b9587e7431b90a034ac7bd94de3)](https://www.codacy.com/app/carriejv/nvp-json-js?utm_source=github.com&utm_medium=referral&utm_content=carriejv/nvp-json-js&utm_campaign=Badge_Coverage) | ||
[![npm version](https://img.shields.io/npm/v/nvp-json.svg)](https://www.npmjs.com/package/nvp-json) [![Build Status](https://img.shields.io/travis/carriejv/nvp-json-js.svg)](https://travis-ci.org/carriejv/nvp-json-js) [![npm downloads](https://img.shields.io/npm/dt/nvp-json.svg)](https://www.npmjs.com/package/nvp-json) [![Codacy Coverage](https://api.codacy.com/project/badge/Coverage/62203b9587e7431b90a034ac7bd94de3)](https://www.codacy.com/app/carriejv/nvp-json-js?utm_source=github.com&utm_medium=referral&utm_content=carriejv/nvp-json-js&utm_campaign=Badge_Coverage) | ||
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/carriejv) [![GitKraken](https://img.shields.io/badge/<3-GitKraken-green.svg)](https://www.gitkraken.com/invite/om4Du5zG) [![dependencies](https://img.shields.io/david/carriejv/nvp-json-js.svg)](https://david-dm.org/carriejv/nvp-json-js) [![devDependencies](https://img.shields.io/david/dev/carriejv/nvp-json-js.svg)](https://david-dm.org/carriejv/nvp-json-js#info=devDependencies) | ||
[![dependencies](https://img.shields.io/david/carriejv/nvp-json-js.svg)](https://david-dm.org/carriejv/nvp-json-js) [![Build Status](https://github.com/carriejv/nvp-json-js/workflows/ci-build/badge.svg?branch=master)](https://github.com/carriejv/nvp-json-js/actions?query=workflow%3Aci-build) [![GitKraken](https://img.shields.io/badge/<3-GitKraken-green.svg)](https://www.gitkraken.com/invite/om4Du5zG) | ||
A bi-directional NVP-JSON parser, for use with [PayPal's NVP APIs](https://developer.paypal.com/reference/?mark=endpoints). | ||
Tested with Node `6.0+`. | ||
Tested with Node >= 6 LTS. | ||
@@ -12,0 +12,0 @@ ## Installation |
@@ -7,6 +7,4 @@ /*! | ||
const chai = require('chai'); | ||
const should = chai.should(); | ||
const nvpjson = require('../index.js'); | ||
require('chai').should(); | ||
@@ -13,0 +11,0 @@ const testString = 'KEY=VALUE&AWFUL[4]==&&=&TERRIBLE[18]= &= HELLOWORLD[2]=&NORMAL=DATA'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5
9
7487
87