node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

45
server/node_modules/path-case/package.json generated vendored Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "path-case",
"version": "2.1.1",
"description": "Path case a string",
"main": "path-case.js",
"typings": "path-case.d.ts",
"files": [
"path-case.js",
"path-case.d.ts",
"LICENSE"
],
"scripts": {
"lint": "standard",
"test-spec": "mocha -- -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"test": "npm run lint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/path-case.git"
},
"keywords": [
"path",
"case",
"slash"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/path-case/issues"
},
"homepage": "https://github.com/blakeembrey/path-case",
"devDependencies": {
"istanbul": "^0.4.3",
"mocha": "^3.0.0",
"standard": "^9.0.1"
},
"dependencies": {
"no-case": "^2.2.0"
}
}