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

39
node_modules/router/package.json generated vendored Normal file
View File

@@ -0,0 +1,39 @@
{
"name": "router",
"description": "Simple middleware-style router",
"version": "1.1.5",
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
"license": "MIT",
"repository": "pillarjs/router",
"dependencies": {
"array-flatten": "2.1.1",
"debug": "~2.2.0",
"methods": "~1.1.2",
"parseurl": "~1.3.1",
"path-to-regexp": "0.1.7",
"setprototypeof": "1.0.2",
"utils-merge": "1.0.0"
},
"devDependencies": {
"after": "0.8.2",
"finalhandler": "0.5.1",
"istanbul": "0.4.5",
"mocha": "2.5.3",
"supertest": "1.1.0"
},
"files": [
"lib/",
"LICENSE",
"HISTORY.md",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.8"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks 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/"
}
}