Changements dans les modules (nouvelle version Express, mysql, ..)

This commit is contained in:
2023-11-23 13:21:05 +01:00
parent 6af45b3ee2
commit bdab795506
820 changed files with 82281 additions and 35986 deletions

27
node_modules/proxy-addr/package.json generated vendored
View File

@@ -1,7 +1,7 @@
{
"name": "proxy-addr",
"description": "Determine address of proxied request",
"version": "2.0.7",
"version": "1.0.10",
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
"license": "MIT",
"keywords": [
@@ -11,22 +11,14 @@
],
"repository": "jshttp/proxy-addr",
"dependencies": {
"forwarded": "0.2.0",
"ipaddr.js": "1.9.1"
"forwarded": "~0.1.0",
"ipaddr.js": "1.0.5"
},
"devDependencies": {
"benchmark": "2.1.4",
"benchmark": "1.0.0",
"beautify-benchmark": "0.2.4",
"deep-equal": "1.0.1",
"eslint": "7.26.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-markdown": "2.2.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"mocha": "8.4.0",
"nyc": "15.1.0"
"istanbul": "0.4.1",
"mocha": "~1.21.5"
},
"files": [
"LICENSE",
@@ -35,13 +27,12 @@
"index.js"
],
"engines": {
"node": ">= 0.10"
"node": ">= 0.6"
},
"scripts": {
"bench": "node benchmark/index.js",
"lint": "eslint .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
}
}