Fix dependabot issues
This commit is contained in:
parent
c89d9bd8b0
commit
531c6ba7c8
705 changed files with 53406 additions and 20466 deletions
4
node_modules/ignore-by-default/README.md
generated
vendored
4
node_modules/ignore-by-default/README.md
generated
vendored
|
|
@ -12,7 +12,7 @@ It's used by [AVA](https://www.npmjs.com/package/ava) and
|
|||
## Installation
|
||||
|
||||
```
|
||||
npm install --save ignore-by-default
|
||||
npm install ignore-by-default
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
|
@ -22,5 +22,5 @@ return an array of directory names. These are the ones you should ignore.
|
|||
|
||||
```js
|
||||
// ['.git', '.sass_cache', …]
|
||||
var ignoredDirectories = require('ignore-by-default').directories()
|
||||
const ignoredDirectories = require('ignore-by-default').directories()
|
||||
```
|
||||
|
|
|
|||
19
node_modules/ignore-by-default/index.js
generated
vendored
19
node_modules/ignore-by-default/index.js
generated
vendored
|
|
@ -1,12 +1,11 @@
|
|||
'use strict'
|
||||
|
||||
exports.directories = function () {
|
||||
return [
|
||||
'.git', // Git repository files, see <https://git-scm.com/>
|
||||
'.nyc_output', // Temporary directory where nyc stores coverage data, see <https://github.com/bcoe/nyc>
|
||||
'.sass-cache', // Cache folder for node-sass, see <https://github.com/sass/node-sass>
|
||||
'bower_components', // Where Bower packages are installed, see <http://bower.io/>
|
||||
'coverage', // Standard output directory for code coverage reports, see <https://github.com/gotwarlost/istanbul>
|
||||
'node_modules' // Where Node modules are installed, see <https://nodejs.org/>
|
||||
]
|
||||
}
|
||||
exports.directories = () => [
|
||||
'.git', // Git repository files, see <https://git-scm.com/>
|
||||
'.log', // Log files emitted by tools such as `tsserver`, see <https://github.com/Microsoft/TypeScript/wiki/Standalone-Server-%28tsserver%29>
|
||||
'.nyc_output', // Temporary directory where nyc stores coverage data, see <https://github.com/bcoe/nyc>
|
||||
'.sass-cache', // Cache folder for node-sass, see <https://github.com/sass/node-sass>
|
||||
'bower_components', // Where Bower packages are installed, see <http://bower.io/>
|
||||
'coverage', // Standard output directory for code coverage reports, see <https://github.com/gotwarlost/istanbul>
|
||||
'node_modules' // Where Node modules are installed, see <https://nodejs.org/>
|
||||
]
|
||||
|
|
|
|||
9
node_modules/ignore-by-default/package.json
generated
vendored
9
node_modules/ignore-by-default/package.json
generated
vendored
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"name": "ignore-by-default",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "A list of directories you should ignore by default",
|
||||
"engines": {
|
||||
"node": ">=10 <11 || >=12 <13 || >=14"
|
||||
},
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"index.js"
|
||||
|
|
@ -28,7 +31,7 @@
|
|||
},
|
||||
"homepage": "https://github.com/novemberborn/ignore-by-default#readme",
|
||||
"devDependencies": {
|
||||
"figures": "^1.4.0",
|
||||
"standard": "^6.0.4"
|
||||
"figures": "^3.2.0",
|
||||
"standard": "^14.3.4"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue