Last commit july 5th

This commit is contained in:
2024-07-05 13:46:23 +02:00
parent dad0d86e8c
commit b0e4dfbb76
24982 changed files with 2621219 additions and 413 deletions

53
spa/node_modules/cordova-fetch/package.json generated vendored Normal file
View File

@@ -0,0 +1,53 @@
{
"name": "cordova-fetch",
"version": "4.0.0",
"description": "Apache Cordova fetch module. Fetches from git and npm.",
"main": "index.js",
"repository": "github:apache/cordova-fetch",
"bugs": "https://github.com/apache/cordova-fetch/issues",
"keywords": [
"cordova",
"fetch",
"apache",
"ecosystem:cordova",
"cordova:tool"
],
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"dependencies": {
"@npmcli/arborist": "^6.2.5",
"cordova-common": "^5.0.0",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"npm-package-arg": "^10.1.0",
"pacote": "^15.1.1",
"pify": "^5.0.0",
"resolve": "^1.22.1",
"semver": "^7.3.8",
"which": "^3.0.0"
},
"devDependencies": {
"@cordova/eslint-config": "^5.0.0",
"file-url": "^3.0.0",
"jasmine": "^4.6.0",
"nyc": "^15.1.0"
},
"scripts": {
"test": "npm run lint && npm run test:coverage",
"test:coverage": "nyc jasmine",
"lint": "eslint --ignore-path .gitignore ."
},
"engines": {
"node": ">=16.13.0",
"npm": ">=8.1.0"
},
"nyc": {
"include": [
"index.js"
],
"reporter": [
"lcov",
"text"
]
}
}