Updated the project.

This commit is contained in:
Batuhan Berk Başoğlu 2024-06-03 15:44:25 -04:00
parent 5dfe9f128d
commit 7919556077
1550 changed files with 17063 additions and 40183 deletions

0
my-app/node_modules/normalize-package-data/LICENSE generated vendored Executable file → Normal file
View file

2
my-app/node_modules/normalize-package-data/README.md generated vendored Executable file → Normal file
View file

@ -1,6 +1,6 @@
# normalize-package-data
[![Build Status](https://travis-ci.org/npm/normalize-package-data.svg?branch=master)](https://travis-ci.org/npm/normalize-package-data)
[![Build Status](https://img.shields.io/github/actions/workflow/status/npm/normalize-package-data/ci.yml?branch=main)](https://github.com/npm/normalize-package-data)
normalize-package-data exports a function that normalizes package metadata. This data is typically found in a package.json file, but in principle could come from any source - for example the npm registry.

0
my-app/node_modules/normalize-package-data/lib/extract_description.js generated vendored Executable file → Normal file
View file

4
my-app/node_modules/normalize-package-data/lib/fixer.js generated vendored Executable file → Normal file
View file

@ -139,7 +139,7 @@ module.exports = {
}
},
fixDependencies: function (data, strict) {
fixDependencies: function (data) {
objectifyDeps(data, this.warn)
addOptionalDepsToDeps(data, this.warn)
this.fixBundleDependenciesField(data)
@ -415,7 +415,7 @@ function parsePerson (person) {
return obj
}
function addOptionalDepsToDeps (data, warn) {
function addOptionalDepsToDeps (data) {
var o = data.optionalDependencies
if (!o) {
return

0
my-app/node_modules/normalize-package-data/lib/make_warning.js generated vendored Executable file → Normal file
View file

2
my-app/node_modules/normalize-package-data/lib/normalize.js generated vendored Executable file → Normal file
View file

@ -26,7 +26,7 @@ function normalize (data, warn, strict) {
strict = false
}
if (!warn || data.private) {
warn = function (msg) { /* noop */ }
warn = function () { /* noop */ }
}
if (data.scripts &&

0
my-app/node_modules/normalize-package-data/lib/safe_format.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/normalize-package-data/lib/typos.json generated vendored Executable file → Normal file
View file

0
my-app/node_modules/normalize-package-data/lib/warning_messages.json generated vendored Executable file → Normal file
View file

18
my-app/node_modules/normalize-package-data/package.json generated vendored Executable file → Normal file
View file

@ -1,18 +1,18 @@
{
"name": "normalize-package-data",
"version": "6.0.0",
"version": "6.0.1",
"author": "GitHub Inc.",
"description": "Normalizes data that can be found in package.json files.",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/npm/normalize-package-data.git"
"url": "git+https://github.com/npm/normalize-package-data.git"
},
"main": "lib/normalize.js",
"scripts": {
"test": "tap",
"npmclilint": "npmcli-lint",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"lintfix": "npm run lint -- --fix",
"posttest": "npm run lint",
"postsnap": "npm run lintfix --",
@ -28,7 +28,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"@npmcli/template-oss": "4.22.0",
"tap": "^16.0.1"
},
"files": [
@ -40,14 +40,8 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.18.0",
"publish": "true",
"ciVersions": [
"16.14.0",
"16.x",
"18.0.0",
"18.x"
]
"version": "4.22.0",
"publish": "true"
},
"tap": {
"branches": 86,