paypal-rest-api
Advanced tools
Comparing version 0.0.29 to 0.0.30
{ | ||
"name": "paypal-rest-api", | ||
"version": "0.0.29", | ||
"version": "0.0.30", | ||
"description": "A typescript module for integrating with PayPal REST APIs.", | ||
@@ -23,10 +23,10 @@ "license": "MIT", | ||
"clean": "rimraf lib coverage", | ||
"coverage": "nyc blue-tape test/**/*-spec.ts | tap-spec && nyc report ---reporter=text", | ||
"coverage": "nyc blue-tape test/**/*-spec.ts | tap-spec && nyc report --reporter=text", | ||
"lint": "tslint --force --format verbose 'src/**/*.ts' 'examples/**/*.ts'", | ||
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty", | ||
"test": "npm run lint && npm run coverage", | ||
"watch": "npm run build -- --watch", | ||
"watch:test": "npm run test -- --watch", | ||
"release": "npm test && npm run build && npm version --", | ||
"release:quick": "npm test && npm run build && git add -A && git commit -m 'Quick Release Patch' && npm version patch && git push --tags", | ||
"build": "yarn run clean && echo Using TypeScript && tsc --version && tsc --pretty", | ||
"test": "yarn run lint && yarn run coverage", | ||
"watch": "yarn run build --watch", | ||
"watch:test": "yarn test --watch", | ||
"release": "yarn test && yarn run build && yarn publish --new-version", | ||
"release:quick": "git add -A && git commit -m 'Quick Release Patch' && yarn run release patch", | ||
"postversion": "npm publish && git push && git push --tags", | ||
@@ -33,0 +33,0 @@ "reinstall": "rimraf node_modules package-lock.json && npm install", |
@@ -36,3 +36,3 @@ [![Build Status](https://travis-ci.org/trainerbill/paypal-rest-api.svg?branch=master)](https://travis-ci.org/trainerbill/paypal-rest-api) | ||
``` | ||
npm install --save paypal-rest-api | ||
yarn add paypal-rest-api | ||
``` | ||
@@ -66,8 +66,8 @@ | ||
### Command line | ||
use the npm run example script and pass in any file path from the [examples folder](https://github.com/trainerbill/paypal-rest-api/tree/master/examples). | ||
use the yarn run example script and pass in any file path from the [examples folder](https://github.com/trainerbill/paypal-rest-api/tree/master/examples). | ||
``` | ||
git clone https://github.com/trainerbill/paypal-rest-api.git | ||
cd paypal-rest-api | ||
npm install | ||
npm run example -- examples/invoice/model/create-update-send-get.ts | ||
yarn install | ||
yarn run example examples/invoice/model/create-update-send-get.ts | ||
``` | ||
@@ -74,0 +74,0 @@ |
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
133147