Comparing version 7.0.0-canary.4 to 7.0.0
{ | ||
"name": "nylas", | ||
"version": "7.0.0-canary.4", | ||
"version": "7.0.0", | ||
"description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.", | ||
"main": "lib/nylas.js", | ||
"types": "lib/nylas.d.ts", | ||
"main": "lib/cjs/nylas.js", | ||
"types": "lib/types/nylas.d.ts", | ||
"module": "lib/esm/nylas.js", | ||
"files": [ | ||
"lib" | ||
], | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"scripts": { | ||
"test": "jest", | ||
"test:coverage": "npm run test -- --coverage", | ||
"lint": "eslint --ext .js,.ts -f visualstudio .", | ||
@@ -17,21 +22,12 @@ "lint:fix": "npm run lint -- --fix", | ||
"lint:prettier:check": "prettier --check '**/*.{ts,js}'", | ||
"build": "tsc", | ||
"export-version": "node scripts/exportVersion.js", | ||
"generate-lib-package-json": "node scripts/generateLibPackageJson.js", | ||
"prebuild": "npm run export-version", | ||
"build": "rm -rf lib && npm run build-esm && npm run build-cjs && npm run generate-lib-package-json", | ||
"build-esm": "tsc -p tsconfig.esm.json", | ||
"build-cjs": "tsc -p tsconfig.cjs.json", | ||
"prepare": "npm run build", | ||
"watch": "nodemon -w src --exec npm run build" | ||
"build:docs": "typedoc --out docs", | ||
"version": "npm run export-version && git add src/version.ts" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest/presets/js-with-ts", | ||
"globals": { | ||
"ts-jest": { | ||
"tsConfig": "tsconfig.test.json" | ||
} | ||
}, | ||
"coverageThreshold": { | ||
"global": { | ||
"functions": 80, | ||
"lines": 80, | ||
"statements": 80 | ||
} | ||
} | ||
}, | ||
"keywords": [ | ||
@@ -46,26 +42,17 @@ "email", | ||
"dependencies": { | ||
"abort-controller": "^3.0.0", | ||
"backoff": "^2.5.0", | ||
"change-case": "^4.1.2", | ||
"eslint-plugin-import": "^2.28.1", | ||
"form-data": "^4.0.0", | ||
"JSONStream": "^1.3.5", | ||
"node-fetch": "^2.6.1", | ||
"express": "^4.17.13", | ||
"body-parser": "^1.20.0", | ||
"uuid": "^8.3.2", | ||
"websocket": "^1.0.34" | ||
"mime-types": "^2.1.35", | ||
"node-fetch": "^2.6.12", | ||
"uuid": "^8.3.2" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.13.16", | ||
"@babel/core": "^7.3.3", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.3.2", | ||
"@babel/preset-env": "^7.3.1", | ||
"@types/backoff": "^2.5.1", | ||
"@types/jest": "^25.1.4", | ||
"@types/node-fetch": "^2.5.8", | ||
"@types/jest": "^29.5.2", | ||
"@types/mime-types": "^2.1.2", | ||
"@types/node-fetch": "^2.6.4", | ||
"@types/uuid": "^8.3.4", | ||
"@types/websocket": "^1.0.5", | ||
"@types/express": "^4.17.13", | ||
"@typescript-eslint/eslint-plugin": "^2.25.0", | ||
"@typescript-eslint/parser": "^2.25.0", | ||
"babel-eslint": "^10.0.1", | ||
"eslint": "^5.14.0", | ||
@@ -75,7 +62,9 @@ "eslint-config-prettier": "^4.0.0", | ||
"eslint-plugin-prettier": "^3.0.1", | ||
"jest": "^24.9.0", | ||
"eslint-plugin-import": "^2.28.1", | ||
"jest": "^29.6.1", | ||
"prettier": "^1.19.1", | ||
"pretty-format": "^25.2.6", | ||
"ts-jest": "^25.2.1", | ||
"typescript": "^3.8.3" | ||
"ts-jest": "^29.1.1", | ||
"typedoc": "^0.24.8", | ||
"typedoc-plugin-rename-defaults": "^0.6.5", | ||
"typescript": "^4.9.5" | ||
}, | ||
@@ -85,3 +74,8 @@ "repository": { | ||
"url": "https://github.com/nylas/nylas-nodejs.git" | ||
}, | ||
"exports": { | ||
"import": "./lib/esm/nylas.js", | ||
"require": "./lib/cjs/nylas.js", | ||
"types": "./lib/types/nylas.d.ts" | ||
} | ||
} |
@@ -0,6 +1,12 @@ | ||
<a href="https://www.nylas.com/"> | ||
<img src="https://brand.nylas.com/assets/downloads/logo_horizontal_png/Nylas-Logo-Horizontal-Blue_.png" alt="Aimeos logo" title="Aimeos" align="right" height="60" /> | ||
</a> | ||
# Nylas Node.js SDK | ||
[![Travis build status](https://travis-ci.org/nylas/nylas-nodejs.svg?branch=master)](https://travis-ci.org/nylas/nylas-nodejs) | ||
[![npm](https://img.shields.io/npm/v/nylas) | ||
](https://www.npmjs.com/package/nylas) | ||
[![codecov](https://codecov.io/gh/nylas/nylas-nodejs/branch/main/graph/badge.svg?token=94IMGU4F09)](https://codecov.io/gh/nylas/nylas-nodejs) | ||
This is the GitHub repository for the Nylas Node SDK and this repo is primarily for anyone who wants to make contributions to the SDK or install it from source. If you are looking to use Node to access the Nylas Email, Calendar, or Contacts API you should refer to our official [Node SDK Quickstart Guide](https://developer.nylas.com/docs/developer-tools/sdk/node-sdk/). | ||
This is the GitHub repository for the Nylas Node SDK. This repo is primarily for anyone who wants to make contributions to the SDK, or install it from source. If you are looking to use Node to access the Nylas Email, Calendar, or Contacts API you should refer to our official [Node SDK Quickstart Guide](https://developer.nylas.com/docs/developer-tools/sdk/node-sdk/). | ||
@@ -11,16 +17,24 @@ The Nylas Communications Platform provides REST APIs for [Email](https://developer.nylas.com/docs/connectivity/email/), [Calendar](https://developer.nylas.com/docs/connectivity/calendar/), and [Contacts](https://developer.nylas.com/docs/connectivity/contacts/), and the Node SDK is the quickest way to build your integration using JavaScript. | ||
- [Nylas SDK Tutorials](https://developer.nylas.com/docs/the-basics/tutorials/nodejs/) | ||
- [Quickstart](https://developer.nylas.com/docs/the-basics/quickstart/) | ||
- [Sign up for your free Nylas account](https://dashboard.nylas.com/register) | ||
- [Sign up for the Nylas v3 Beta program to access the v3 Dashboard](https://info.nylas.com/apiv3betasignup.html?utm_source=github&utm_medium=devrel-surfaces&utm_campaign=&utm_content=node-sdk-upgrade) | ||
- [Nylas API v3 Quickstart Guide](https://developer.nylas.com/docs/v3-beta/v3-quickstart/) | ||
- [Nylas SDK Reference](https://nylas-nodejs-sdk-reference.pages.dev/) | ||
- [Nylas API Reference](https://developer.nylas.com/docs/api/) | ||
- [Nylas Samples repo for code samples and example applications](https://github.com/orgs/nylas-samples/repositories?q=&type=all&language=javascript) | ||
## ⚙️ Install | ||
# Install | ||
**Note:** The Nylas Node SDK requires Node.js v16 or later. | ||
To install the Nylas Node SDK, you will first need to have [Node](https://nodejs.org/en/download/) and [npm](https://www.npmjs.com/get-npm) installed on your machine. | ||
### Set up using npm | ||
To run the Nylas Node SDK, first install [Node](https://nodejs.org/en/download/) and [npm](https://www.npmjs.com/get-npm) on your machine. | ||
Then, head to the nearest command line and run the following: | ||
`npm install nylas` | ||
Alternatively, if you prefer to use [Yarn](https://yarnpkg.com/en/), you can install the Nylas Node SDK with `yarn add nylas` | ||
Alternatively, you can use [Yarn](https://yarnpkg.com/en/) to install the Nylas Node SDK by running the `yarn add nylas` command. | ||
### Build from source | ||
To install this package from source, clone this repo and run `npm install` from inside the project directory. | ||
@@ -34,38 +48,46 @@ | ||
# Usage | ||
## ⚡️ Usage | ||
The SDK entrypoint and application resources (i.e., application accounts, authentication, webhooks) is accessed via an instance of `Nylas`. You can initialize a `Nylas` instance with your `clientId` and `clientSecret`. | ||
To use this SDK, you must first [get a free Nylas account](https://dashboard.nylas.com/register). | ||
```javascript | ||
const Nylas = require('nylas'); | ||
Then, follow the Quickstart guide to [set up your first app and get your API keys](https://developer.nylas.com/docs/v3-beta/v3-quickstart/). | ||
const nylasClient = new Nylas({ | ||
clientId: CLIENT_ID, | ||
clientSecret: CLIENT_SECRET, | ||
For code examples that demonstrate how to use this SDK, take a look at our [Node repos in the Nylas Samples collection](https://github.com/orgs/nylas-samples/repositories?q=&type=all&language=javascript&sort=). | ||
### 🚀 Making Your First Request | ||
You access Nylas resources (messages, calendars, events, contacts) through an instance of `Nylas`. The `Nylas` object must be initialized with your Nylas API key, and you can provide other additional configurations such as the Nylas API url and the timeout. | ||
```typescript | ||
import Nylas from "nylas"; | ||
const nylas = new Nylas({ | ||
apiKey: "NYLAS_API_KEY", | ||
}); | ||
``` | ||
Every account resource (i.e., messages, events, contacts) is accessed via an instance of `NylasConnection`. To initialize an instance of `NylasConnection`, call `with` on your `Nylas` instance and pass it your `accessToken`. | ||
Once initialized you can use the object to make requests for a given account's resources, for example to list all the calendars for a given account: | ||
```javascript | ||
const nylasConnection = nylasClient.with(ACCESS_TOKEN); | ||
``` | ||
Then, you can use Nylas to access information about a user's account: | ||
```javascript | ||
nylasConnection.threads.list().then(threads => { | ||
console.log(threads.length); | ||
```typescript | ||
nylas.calendars.list({ identifier: "GRANT_ID" }).then(calendars => { | ||
console.log(calendars); | ||
}); | ||
``` | ||
For more information about how to use the Nylas Node SDK, [take a look at our quickstart guide](https://developer.nylas.com/docs/developer-tools/sdk/node-sdk/). | ||
## 📚 Documentation | ||
# Contributing | ||
Nylas maintains a [reference guide for the Node SDK](https://nylas-nodejs-sdk-reference.pages.dev/) to help you get familiar with the available methods and classes. | ||
Please refer to [Contributing](Contributing.md) for information about how to make contributions to this project. We welcome questions, bug reports, and pull requests. | ||
## ✨ Upgrading from 6.x | ||
# License | ||
See [UPGRADE.md](UPGRADE.md) for instructions on upgrading from 6.x to 7.x. | ||
This project is licensed under the terms of the MIT license. Please refer to [LICENSE](LICENSE.txt) for the full terms. | ||
**Note**: The Node SDK v7.x is not compatible with the Nylas API earlier than v3-beta. | ||
## 💙 Contributing | ||
Please refer to [Contributing](Contributing.md) for information about how to make contributions to this project. We welcome questions, bug reports, and pull requests. | ||
## 📝 License | ||
This project is licensed under the terms of the MIT license. Please refer to [LICENSE](LICENSE.txt) for the full terms. |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
6
18
134
0
1
92
245435
7761
2
2
+ Addedchange-case@^4.1.2
+ Addedeslint-plugin-import@^2.28.1
+ Addedmime-types@^2.1.35
+ Added@eslint-community/eslint-utils@4.4.1(transitive)
+ Added@eslint-community/regexpp@4.12.1(transitive)
+ Added@eslint/config-array@0.18.0(transitive)
+ Added@eslint/core@0.7.0(transitive)
+ Added@eslint/eslintrc@3.1.0(transitive)
+ Added@eslint/js@9.14.0(transitive)
+ Added@eslint/object-schema@2.1.4(transitive)
+ Added@eslint/plugin-kit@0.2.2(transitive)
+ Added@humanfs/core@0.19.1(transitive)
+ Added@humanfs/node@0.16.6(transitive)
+ Added@humanwhocodes/module-importer@1.0.1(transitive)
+ Added@humanwhocodes/retry@0.3.10.4.1(transitive)
+ Added@rtsao/scc@1.1.0(transitive)
+ Added@types/estree@1.0.6(transitive)
+ Added@types/json-schema@7.0.15(transitive)
+ Added@types/json5@0.0.29(transitive)
+ Addedacorn@8.14.0(transitive)
+ Addedacorn-jsx@5.3.2(transitive)
+ Addedajv@6.12.6(transitive)
+ Addedansi-styles@4.3.0(transitive)
+ Addedargparse@2.0.1(transitive)
+ Addedarray-buffer-byte-length@1.0.1(transitive)
+ Addedarray-includes@3.1.8(transitive)
+ Addedarray.prototype.findlastindex@1.2.5(transitive)
+ Addedarray.prototype.flat@1.3.2(transitive)
+ Addedarray.prototype.flatmap@1.3.2(transitive)
+ Addedarraybuffer.prototype.slice@1.0.3(transitive)
+ Addedavailable-typed-arrays@1.0.7(transitive)
+ Addedbalanced-match@1.0.2(transitive)
+ Addedbrace-expansion@1.1.11(transitive)
+ Addedcallsites@3.1.0(transitive)
+ Addedcamel-case@4.1.2(transitive)
+ Addedcapital-case@1.0.4(transitive)
+ Addedchalk@4.1.2(transitive)
+ Addedchange-case@4.1.2(transitive)
+ Addedcolor-convert@2.0.1(transitive)
+ Addedcolor-name@1.1.4(transitive)
+ Addedconcat-map@0.0.1(transitive)
+ Addedconstant-case@3.0.4(transitive)
+ Addedcross-spawn@7.0.5(transitive)
+ Addeddata-view-buffer@1.0.1(transitive)
+ Addeddata-view-byte-length@1.0.1(transitive)
+ Addeddata-view-byte-offset@1.0.0(transitive)
+ Addeddebug@3.2.74.3.7(transitive)
+ Addeddeep-is@0.1.4(transitive)
+ Addeddefine-properties@1.2.1(transitive)
+ Addeddoctrine@2.1.0(transitive)
+ Addeddot-case@3.0.4(transitive)
+ Addedes-abstract@1.23.3(transitive)
+ Addedes-object-atoms@1.0.0(transitive)
+ Addedes-set-tostringtag@2.0.3(transitive)
+ Addedes-shim-unscopables@1.0.2(transitive)
+ Addedes-to-primitive@1.2.1(transitive)
+ Addedescape-string-regexp@4.0.0(transitive)
+ Addedeslint@9.14.0(transitive)
+ Addedeslint-import-resolver-node@0.3.9(transitive)
+ Addedeslint-module-utils@2.12.0(transitive)
+ Addedeslint-plugin-import@2.31.0(transitive)
+ Addedeslint-scope@8.2.0(transitive)
+ Addedeslint-visitor-keys@3.4.34.2.0(transitive)
+ Addedespree@10.3.0(transitive)
+ Addedesquery@1.6.0(transitive)
+ Addedesrecurse@4.3.0(transitive)
+ Addedestraverse@5.3.0(transitive)
+ Addedesutils@2.0.3(transitive)
+ Addedfast-deep-equal@3.1.3(transitive)
+ Addedfast-json-stable-stringify@2.1.0(transitive)
+ Addedfast-levenshtein@2.0.6(transitive)
+ Addedfile-entry-cache@8.0.0(transitive)
+ Addedfind-up@5.0.0(transitive)
+ Addedflat-cache@4.0.1(transitive)
+ Addedflatted@3.3.1(transitive)
+ Addedfor-each@0.3.3(transitive)
+ Addedfunction.prototype.name@1.1.6(transitive)
+ Addedfunctions-have-names@1.2.3(transitive)
+ Addedget-symbol-description@1.0.2(transitive)
+ Addedglob-parent@6.0.2(transitive)
+ Addedglobals@14.0.0(transitive)
+ Addedglobalthis@1.0.4(transitive)
+ Addedhas-bigints@1.0.2(transitive)
+ Addedhas-flag@4.0.0(transitive)
+ Addedhas-tostringtag@1.0.2(transitive)
+ Addedheader-case@2.0.4(transitive)
+ Addedignore@5.3.2(transitive)
+ Addedimport-fresh@3.3.0(transitive)
+ Addedimurmurhash@0.1.4(transitive)
+ Addedinternal-slot@1.0.7(transitive)
+ Addedis-array-buffer@3.0.4(transitive)
+ Addedis-bigint@1.0.4(transitive)
+ Addedis-boolean-object@1.1.2(transitive)
+ Addedis-callable@1.2.7(transitive)
+ Addedis-core-module@2.15.1(transitive)
+ Addedis-data-view@1.0.1(transitive)
+ Addedis-date-object@1.0.5(transitive)
+ Addedis-extglob@2.1.1(transitive)
+ Addedis-glob@4.0.3(transitive)
+ Addedis-negative-zero@2.0.3(transitive)
+ Addedis-number-object@1.0.7(transitive)
+ Addedis-regex@1.1.4(transitive)
+ Addedis-shared-array-buffer@1.0.3(transitive)
+ Addedis-string@1.0.7(transitive)
+ Addedis-symbol@1.0.4(transitive)
+ Addedis-typed-array@1.1.13(transitive)
+ Addedis-weakref@1.0.2(transitive)
+ Addedisarray@2.0.5(transitive)
+ Addedisexe@2.0.0(transitive)
+ Addedjs-yaml@4.1.0(transitive)
+ Addedjson-buffer@3.0.1(transitive)
+ Addedjson-schema-traverse@0.4.1(transitive)
+ Addedjson-stable-stringify-without-jsonify@1.0.1(transitive)
+ Addedjson5@1.0.2(transitive)
+ Addedkeyv@4.5.4(transitive)
+ Addedlevn@0.4.1(transitive)
+ Addedlocate-path@6.0.0(transitive)
+ Addedlodash.merge@4.6.2(transitive)
+ Addedlower-case@2.0.2(transitive)
+ Addedminimatch@3.1.2(transitive)
+ Addedminimist@1.2.8(transitive)
+ Addednatural-compare@1.4.0(transitive)
+ Addedno-case@3.0.4(transitive)
+ Addedobject-keys@1.1.1(transitive)
+ Addedobject.assign@4.1.5(transitive)
+ Addedobject.fromentries@2.0.8(transitive)
+ Addedobject.groupby@1.0.3(transitive)
+ Addedobject.values@1.2.0(transitive)
+ Addedoptionator@0.9.4(transitive)
+ Addedp-limit@3.1.0(transitive)
+ Addedp-locate@5.0.0(transitive)
+ Addedparam-case@3.0.4(transitive)
+ Addedparent-module@1.0.1(transitive)
+ Addedpascal-case@3.1.2(transitive)
+ Addedpath-case@3.0.4(transitive)
+ Addedpath-exists@4.0.0(transitive)
+ Addedpath-key@3.1.1(transitive)
+ Addedpath-parse@1.0.7(transitive)
+ Addedpossible-typed-array-names@1.0.0(transitive)
+ Addedprelude-ls@1.2.1(transitive)
+ Addedpunycode@2.3.1(transitive)
+ Addedregexp.prototype.flags@1.5.3(transitive)
+ Addedresolve@1.22.8(transitive)
+ Addedresolve-from@4.0.0(transitive)
+ Addedsafe-array-concat@1.1.2(transitive)
+ Addedsafe-regex-test@1.0.3(transitive)
+ Addedsemver@6.3.1(transitive)
+ Addedsentence-case@3.0.4(transitive)
+ Addedset-function-name@2.0.2(transitive)
+ Addedshebang-command@2.0.0(transitive)
+ Addedshebang-regex@3.0.0(transitive)
+ Addedsnake-case@3.0.4(transitive)
+ Addedstring.prototype.trim@1.2.9(transitive)
+ Addedstring.prototype.trimend@1.0.8(transitive)
+ Addedstring.prototype.trimstart@1.0.8(transitive)
+ Addedstrip-bom@3.0.0(transitive)
+ Addedstrip-json-comments@3.1.1(transitive)
+ Addedsupports-color@7.2.0(transitive)
+ Addedsupports-preserve-symlinks-flag@1.0.0(transitive)
+ Addedtext-table@0.2.0(transitive)
+ Addedtsconfig-paths@3.15.0(transitive)
+ Addedtslib@2.8.1(transitive)
+ Addedtype-check@0.4.0(transitive)
+ Addedtyped-array-buffer@1.0.2(transitive)
+ Addedtyped-array-byte-length@1.0.1(transitive)
+ Addedtyped-array-byte-offset@1.0.2(transitive)
+ Addedtyped-array-length@1.0.6(transitive)
+ Addedunbox-primitive@1.0.2(transitive)
+ Addedupper-case@2.0.2(transitive)
+ Addedupper-case-first@2.0.2(transitive)
+ Addeduri-js@4.4.1(transitive)
+ Addedwhich@2.0.2(transitive)
+ Addedwhich-boxed-primitive@1.0.2(transitive)
+ Addedwhich-typed-array@1.1.15(transitive)
+ Addedword-wrap@1.2.5(transitive)
+ Addedyocto-queue@0.1.0(transitive)
- RemovedJSONStream@^1.3.5
- Removedabort-controller@^3.0.0
- Removedbackoff@^2.5.0
- Removedbody-parser@^1.20.0
- Removedexpress@^4.17.13
- Removedwebsocket@^1.0.34
- RemovedJSONStream@1.3.5(transitive)
- Removedabort-controller@3.0.0(transitive)
- Removedaccepts@1.3.8(transitive)
- Removedarray-flatten@1.1.1(transitive)
- Removedbackoff@2.5.0(transitive)
- Removedbody-parser@1.20.3(transitive)
- Removedbufferutil@4.0.8(transitive)
- Removedbytes@3.1.2(transitive)
- Removedcontent-disposition@0.5.4(transitive)
- Removedcontent-type@1.0.5(transitive)
- Removedcookie@0.7.1(transitive)
- Removedcookie-signature@1.0.6(transitive)
- Removedd@1.0.2(transitive)
- Removeddebug@2.6.9(transitive)
- Removeddepd@2.0.0(transitive)
- Removeddestroy@1.2.0(transitive)
- Removedee-first@1.1.1(transitive)
- Removedencodeurl@1.0.22.0.0(transitive)
- Removedes5-ext@0.10.64(transitive)
- Removedes6-iterator@2.0.3(transitive)
- Removedes6-symbol@3.1.4(transitive)
- Removedescape-html@1.0.3(transitive)
- Removedesniff@2.0.1(transitive)
- Removedetag@1.8.1(transitive)
- Removedevent-emitter@0.3.5(transitive)
- Removedevent-target-shim@5.0.1(transitive)
- Removedexpress@4.21.1(transitive)
- Removedext@1.7.0(transitive)
- Removedfinalhandler@1.3.1(transitive)
- Removedforwarded@0.2.0(transitive)
- Removedfresh@0.5.2(transitive)
- Removedhttp-errors@2.0.0(transitive)
- Removediconv-lite@0.4.24(transitive)
- Removedinherits@2.0.4(transitive)
- Removedipaddr.js@1.9.1(transitive)
- Removedis-typedarray@1.0.0(transitive)
- Removedjsonparse@1.3.1(transitive)
- Removedmedia-typer@0.3.0(transitive)
- Removedmerge-descriptors@1.0.3(transitive)
- Removedmethods@1.1.2(transitive)
- Removedmime@1.6.0(transitive)
- Removedms@2.0.0(transitive)
- Removednegotiator@0.6.3(transitive)
- Removednext-tick@1.1.0(transitive)
- Removednode-gyp-build@4.8.2(transitive)
- Removedon-finished@2.4.1(transitive)
- Removedparseurl@1.3.3(transitive)
- Removedpath-to-regexp@0.1.10(transitive)
- Removedprecond@0.2.3(transitive)
- Removedproxy-addr@2.0.7(transitive)
- Removedqs@6.13.0(transitive)
- Removedrange-parser@1.2.1(transitive)
- Removedraw-body@2.5.2(transitive)
- Removedsafe-buffer@5.2.1(transitive)
- Removedsafer-buffer@2.1.2(transitive)
- Removedsend@0.19.0(transitive)
- Removedserve-static@1.16.2(transitive)
- Removedsetprototypeof@1.2.0(transitive)
- Removedstatuses@2.0.1(transitive)
- Removedthrough@2.3.8(transitive)
- Removedtoidentifier@1.0.1(transitive)
- Removedtype@2.7.3(transitive)
- Removedtype-is@1.6.18(transitive)
- Removedtypedarray-to-buffer@3.1.5(transitive)
- Removedunpipe@1.0.0(transitive)
- Removedutf-8-validate@5.0.10(transitive)
- Removedutils-merge@1.0.1(transitive)
- Removedvary@1.1.2(transitive)
- Removedwebsocket@1.0.35(transitive)
- Removedyaeti@0.0.6(transitive)
Updatednode-fetch@^2.6.12