Bump eslint-plugin-import to avoid vulnerability in dependency
This commit is contained in:
parent
10695e6a20
commit
ed9506bbaf
1660 changed files with 67726 additions and 27926 deletions
1
node_modules/has-bigints/.eslintignore
generated
vendored
1
node_modules/has-bigints/.eslintignore
generated
vendored
|
|
@ -1 +0,0 @@
|
|||
coverage/
|
||||
4
node_modules/has-bigints/.eslintrc
generated
vendored
4
node_modules/has-bigints/.eslintrc
generated
vendored
|
|
@ -2,8 +2,4 @@
|
|||
"root": true,
|
||||
|
||||
"extends": "@ljharb",
|
||||
|
||||
"rules": {
|
||||
"operator-linebreak": [2, "before"],
|
||||
},
|
||||
}
|
||||
|
|
|
|||
4
node_modules/has-bigints/.nycrc
generated
vendored
4
node_modules/has-bigints/.nycrc
generated
vendored
|
|
@ -2,10 +2,6 @@
|
|||
"all": true,
|
||||
"check-coverage": false,
|
||||
"reporter": ["text-summary", "text", "html", "json"],
|
||||
"lines": 86,
|
||||
"statements": 85.93,
|
||||
"functions": 82.43,
|
||||
"branches": 76.06,
|
||||
"exclude": [
|
||||
"coverage",
|
||||
"test"
|
||||
|
|
|
|||
17
node_modules/has-bigints/CHANGELOG.md
generated
vendored
17
node_modules/has-bigints/CHANGELOG.md
generated
vendored
|
|
@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [v1.0.2](https://github.com/inspect-js/has-bigints/compare/v1.0.1...v1.0.2) - 2022-04-19
|
||||
|
||||
### Commits
|
||||
|
||||
- [actions] reuse common workflows [`a655b7f`](https://github.com/inspect-js/has-bigints/commit/a655b7f7733ba2de078b3a59a704c2795440d08c)
|
||||
- [actions] use `node/install` instead of `node/run`; use `codecov` action [`730a2e5`](https://github.com/inspect-js/has-bigints/commit/730a2e53d3f5f82ac43a11cb9753b11445d06d58)
|
||||
- [readme] add github actions/codecov badges; update URLs [`9a83788`](https://github.com/inspect-js/has-bigints/commit/9a8378861917b41ebb360a9d8ab3d39aa33acf7b)
|
||||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`b1edc52`](https://github.com/inspect-js/has-bigints/commit/b1edc522ef6c23556e55b9c81b65fe884d1e2cc4)
|
||||
- [actions] update codecov uploader [`cbb1bd0`](https://github.com/inspect-js/has-bigints/commit/cbb1bd0eff486070a19283238da6afd33ca73b4b)
|
||||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`8717e6d`](https://github.com/inspect-js/has-bigints/commit/8717e6d6ae6b5010aea1fac5e48dfdfaf35d8c72)
|
||||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `safe-publish-latest`, `tape` [`5f70eab`](https://github.com/inspect-js/has-bigints/commit/5f70eab763118d40415f13e47446ea5c011fbe18)
|
||||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`a1446bc`](https://github.com/inspect-js/has-bigints/commit/a1446bc3e806ce3911c73d6fbdd981f461c41019)
|
||||
- [meta] use `prepublishOnly` script for npm 7+ [`f2dd197`](https://github.com/inspect-js/has-bigints/commit/f2dd19716a06ca7a971644761e864f0435db278e)
|
||||
- [actions] use checkout v3 [`1ba72f1`](https://github.com/inspect-js/has-bigints/commit/1ba72f19ada076791ff193aca9d8537388d67ddb)
|
||||
- [Refactor] use a global variable to get the original BigInt instead of a global property [`a7ccfac`](https://github.com/inspect-js/has-bigints/commit/a7ccfac0414e56dadd263fd07c0b5141388df502)
|
||||
- [actions] skip `npm ls` on older nodes [`62d31e7`](https://github.com/inspect-js/has-bigints/commit/62d31e79658b16391458d0728e0dacbee8694ebb)
|
||||
|
||||
## [v1.0.1](https://github.com/inspect-js/has-bigints/compare/v1.0.0...v1.0.1) - 2020-12-13
|
||||
|
||||
### Commits
|
||||
|
|
|
|||
30
node_modules/has-bigints/README.md
generated
vendored
30
node_modules/has-bigints/README.md
generated
vendored
|
|
@ -1,11 +1,13 @@
|
|||
# has-bigints <sup>[![Version Badge][2]][1]</sup>
|
||||
# has-bigints <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
|
||||
|
||||
[![dependency status][5]][6]
|
||||
[![dev dependency status][7]][8]
|
||||
[![github actions][actions-image]][actions-url]
|
||||
[![coverage][codecov-image]][codecov-url]
|
||||
[![dependency status][deps-svg]][deps-url]
|
||||
[![dev dependency status][dev-deps-svg]][dev-deps-url]
|
||||
[![License][license-image]][license-url]
|
||||
[![Downloads][downloads-image]][downloads-url]
|
||||
|
||||
[![npm badge][11]][1]
|
||||
[![npm badge][npm-badge-png]][package-url]
|
||||
|
||||
Determine if the JS environment has BigInt support.
|
||||
|
||||
|
|
@ -20,16 +22,18 @@ hasBigInts() === true; // if the environment has native BigInt support. Not poly
|
|||
## Tests
|
||||
Simply clone the repo, `npm install`, and run `npm test`
|
||||
|
||||
[1]: https://npmjs.org/package/has-bigints
|
||||
[2]: https://versionbadg.es/ljharb/has-bigints.svg
|
||||
[5]: https://david-dm.org/ljharb/has-bigints.svg
|
||||
[6]: https://david-dm.org/ljharb/has-bigints
|
||||
[7]: https://david-dm.org/ljharb/has-bigints/dev-status.svg
|
||||
[8]: https://david-dm.org/ljharb/has-bigints#info=devDependencies
|
||||
[9]: https://ci.testling.com/ljharb/has-bigints.png
|
||||
[10]: https://ci.testling.com/ljharb/has-bigints
|
||||
[11]: https://nodei.co/npm/has-bigints.png?downloads=true&stars=true
|
||||
[package-url]: https://npmjs.org/package/has-bigints
|
||||
[npm-version-svg]: https://versionbadg.es/inspect-js/has-bigints.svg
|
||||
[deps-svg]: https://david-dm.org/inspect-js/has-bigints.svg
|
||||
[deps-url]: https://david-dm.org/inspect-js/has-bigints
|
||||
[dev-deps-svg]: https://david-dm.org/inspect-js/has-bigints/dev-status.svg
|
||||
[dev-deps-url]: https://david-dm.org/inspect-js/has-bigints#info=devDependencies
|
||||
[npm-badge-png]: https://nodei.co/npm/has-bigints.png?downloads=true&stars=true
|
||||
[license-image]: https://img.shields.io/npm/l/has-bigints.svg
|
||||
[license-url]: LICENSE
|
||||
[downloads-image]: https://img.shields.io/npm/dm/has-bigints.svg
|
||||
[downloads-url]: https://npm-stat.com/charts.html?package=has-bigints
|
||||
[codecov-image]: https://codecov.io/gh/inspect-js/has-bigints/branch/main/graphs/badge.svg
|
||||
[codecov-url]: https://app.codecov.io/gh/inspect-js/has-bigints/
|
||||
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-bigints
|
||||
[actions-url]: https://github.com/inspect-js/has-bigints/actions
|
||||
|
|
|
|||
2
node_modules/has-bigints/index.js
generated
vendored
2
node_modules/has-bigints/index.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
var $BigInt = global.BigInt;
|
||||
var $BigInt = typeof BigInt !== 'undefined' && BigInt;
|
||||
|
||||
module.exports = function hasNativeBigInts() {
|
||||
return typeof $BigInt === 'function'
|
||||
|
|
|
|||
17
node_modules/has-bigints/package.json
generated
vendored
17
node_modules/has-bigints/package.json
generated
vendored
|
|
@ -1,12 +1,13 @@
|
|||
{
|
||||
"name": "has-bigints",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"description": "Determine if the JS environment has BigInt support.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"version": "auto-changelog && git add CHANGELOG.md",
|
||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
|
||||
"prepublish": "not-in-publish || safe-publish-latest",
|
||||
"prepublishOnly": "safe-publish-latest",
|
||||
"prepublish": "not-in-publish || npm run prepublishOnly",
|
||||
"lint": "eslint --ext=js,mjs .",
|
||||
"pretest": "npm run lint",
|
||||
"tests-only": "nyc tape 'test/**/*.js'",
|
||||
|
|
@ -33,14 +34,14 @@
|
|||
},
|
||||
"homepage": "https://github.com/ljharb/has-bigints#readme",
|
||||
"devDependencies": {
|
||||
"@ljharb/eslint-config": "^17.3.0",
|
||||
"aud": "^1.1.3",
|
||||
"auto-changelog": "^2.2.1",
|
||||
"eslint": "^7.15.0",
|
||||
"@ljharb/eslint-config": "^21.0.0",
|
||||
"aud": "^2.0.0",
|
||||
"auto-changelog": "^2.4.0",
|
||||
"eslint": "=8.8.0",
|
||||
"in-publish": "^2.0.1",
|
||||
"nyc": "^10.3.2",
|
||||
"safe-publish-latest": "^1.1.4",
|
||||
"tape": "^5.0.1"
|
||||
"safe-publish-latest": "^2.0.0",
|
||||
"tape": "^5.5.3"
|
||||
},
|
||||
"auto-changelog": {
|
||||
"output": "CHANGELOG.md",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue