update
This commit is contained in:
6
package/node_modules/validate-npm-package-name/LICENSE
generated
vendored
Normal file
6
package/node_modules/validate-npm-package-name/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
Copyright (c) 2015, npm, Inc
|
||||
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
105
package/node_modules/validate-npm-package-name/lib/index.js
generated
vendored
Normal file
105
package/node_modules/validate-npm-package-name/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
'use strict'
|
||||
const { builtinModules: builtins } = require('module')
|
||||
|
||||
var scopedPackagePattern = new RegExp('^(?:@([^/]+?)[/])?([^/]+?)$')
|
||||
var blacklist = [
|
||||
'node_modules',
|
||||
'favicon.ico',
|
||||
]
|
||||
|
||||
function validate (name) {
|
||||
var warnings = []
|
||||
var errors = []
|
||||
|
||||
if (name === null) {
|
||||
errors.push('name cannot be null')
|
||||
return done(warnings, errors)
|
||||
}
|
||||
|
||||
if (name === undefined) {
|
||||
errors.push('name cannot be undefined')
|
||||
return done(warnings, errors)
|
||||
}
|
||||
|
||||
if (typeof name !== 'string') {
|
||||
errors.push('name must be a string')
|
||||
return done(warnings, errors)
|
||||
}
|
||||
|
||||
if (!name.length) {
|
||||
errors.push('name length must be greater than zero')
|
||||
}
|
||||
|
||||
if (name.match(/^\./)) {
|
||||
errors.push('name cannot start with a period')
|
||||
}
|
||||
|
||||
if (name.match(/^_/)) {
|
||||
errors.push('name cannot start with an underscore')
|
||||
}
|
||||
|
||||
if (name.trim() !== name) {
|
||||
errors.push('name cannot contain leading or trailing spaces')
|
||||
}
|
||||
|
||||
// No funny business
|
||||
blacklist.forEach(function (blacklistedName) {
|
||||
if (name.toLowerCase() === blacklistedName) {
|
||||
errors.push(blacklistedName + ' is a blacklisted name')
|
||||
}
|
||||
})
|
||||
|
||||
// Generate warnings for stuff that used to be allowed
|
||||
|
||||
// core module names like http, events, util, etc
|
||||
if (builtins.includes(name.toLowerCase())) {
|
||||
warnings.push(name + ' is a core module name')
|
||||
}
|
||||
|
||||
if (name.length > 214) {
|
||||
warnings.push('name can no longer contain more than 214 characters')
|
||||
}
|
||||
|
||||
// mIxeD CaSe nAMEs
|
||||
if (name.toLowerCase() !== name) {
|
||||
warnings.push('name can no longer contain capital letters')
|
||||
}
|
||||
|
||||
if (/[~'!()*]/.test(name.split('/').slice(-1)[0])) {
|
||||
warnings.push('name can no longer contain special characters ("~\'!()*")')
|
||||
}
|
||||
|
||||
if (encodeURIComponent(name) !== name) {
|
||||
// Maybe it's a scoped package name, like @user/package
|
||||
var nameMatch = name.match(scopedPackagePattern)
|
||||
if (nameMatch) {
|
||||
var user = nameMatch[1]
|
||||
var pkg = nameMatch[2]
|
||||
if (encodeURIComponent(user) === user && encodeURIComponent(pkg) === pkg) {
|
||||
return done(warnings, errors)
|
||||
}
|
||||
}
|
||||
|
||||
errors.push('name can only contain URL-friendly characters')
|
||||
}
|
||||
|
||||
return done(warnings, errors)
|
||||
}
|
||||
|
||||
var done = function (warnings, errors) {
|
||||
var result = {
|
||||
validForNewPackages: errors.length === 0 && warnings.length === 0,
|
||||
validForOldPackages: errors.length === 0,
|
||||
warnings: warnings,
|
||||
errors: errors,
|
||||
}
|
||||
if (!result.warnings.length) {
|
||||
delete result.warnings
|
||||
}
|
||||
if (!result.errors.length) {
|
||||
delete result.errors
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
module.exports = validate
|
60
package/node_modules/validate-npm-package-name/package.json
generated
vendored
Normal file
60
package/node_modules/validate-npm-package-name/package.json
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"name": "validate-npm-package-name",
|
||||
"version": "5.0.1",
|
||||
"description": "Give me a string and I'll tell you if it's a valid npm package name",
|
||||
"main": "lib/",
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@npmcli/eslint-config": "^4.0.0",
|
||||
"@npmcli/template-oss": "4.22.0",
|
||||
"tap": "^16.0.1"
|
||||
},
|
||||
"scripts": {
|
||||
"cov:test": "TAP_FLAGS='--cov' npm run test:code",
|
||||
"test:code": "tap ${TAP_FLAGS:-'--'} test/*.js",
|
||||
"test:style": "standard",
|
||||
"test": "tap",
|
||||
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
|
||||
"postlint": "template-oss-check",
|
||||
"template-oss-apply": "template-oss-apply --force",
|
||||
"lintfix": "npm run lint -- --fix",
|
||||
"snap": "tap",
|
||||
"posttest": "npm run lint"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/npm/validate-npm-package-name.git"
|
||||
},
|
||||
"keywords": [
|
||||
"npm",
|
||||
"package",
|
||||
"names",
|
||||
"validation"
|
||||
],
|
||||
"author": "GitHub Inc.",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/npm/validate-npm-package-name/issues"
|
||||
},
|
||||
"homepage": "https://github.com/npm/validate-npm-package-name",
|
||||
"files": [
|
||||
"bin/",
|
||||
"lib/"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
||||
},
|
||||
"templateOSS": {
|
||||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
||||
"version": "4.22.0",
|
||||
"publish": true
|
||||
},
|
||||
"tap": {
|
||||
"nyc-arg": [
|
||||
"--exclude",
|
||||
"tap-snapshots/**"
|
||||
]
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user