Tracking de l'application VApp (IHM du jeu)

This commit is contained in:
2025-05-11 18:04:12 +02:00
commit 89e9db9b62
17763 changed files with 3718499 additions and 0 deletions

56
VApp/node_modules/@videojs/xhr/package.json generated vendored Normal file
View File

@@ -0,0 +1,56 @@
{
"name": "@videojs/xhr",
"version": "2.7.0",
"description": "small xhr abstraction",
"keywords": [
"xhr",
"http",
"xmlhttprequest",
"xhr2",
"browserify"
],
"author": "Raynos <raynos2@gmail.com>",
"repository": "git://github.com/videojs/xhr.git",
"main": "./lib/index.js",
"homepage": "https://github.com/videojs/xhr",
"contributors": [
{
"name": "Jake Verbaten"
},
{
"name": "Zbyszek Tenerowicz",
"email": "naugtur@gmail.com"
}
],
"bugs": "https://github.com/videojs/xhr/issues",
"typings": "./lib/index.d.ts",
"dependencies": {
"@babel/runtime": "^7.5.5",
"is-function": "^1.0.1",
"global": "~4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@videojs/babel-config": "^0.1.0",
"for-each": "^0.3.2",
"pre-commit": "1.2.2",
"run-browser": "naugtur/run-browser",
"tap-spec": "^5.0.0",
"tape": "^4.0.0"
},
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"start": "npm run build -- -w",
"build": "babel-config-cjs src -d lib",
"test:index": "run-browser test/index.js -b -m test/mock-server.js | tap-spec",
"test:interceptors": "run-browser test/interceptors.js -b -m test/mock-server.js | tap-spec",
"test:retry": "run-browser test/retry.js -b -m test/mock-server.js | tap-spec",
"test:http-handler": "run-browser test/http-handler.js -b -m test/mock-server.js | tap-spec",
"pretest": "npm run build",
"test": "npm run test:index && npm run test:http-handler && npm run test:interceptors && npm run test:retry",
"browser": "run-browser -m test/mock-server.js test/index.js"
}
}