Install YAML parser

This commit is contained in:
2024-11-12 19:01:01 +01:00
parent bd948b7017
commit ae1acb46d1
2 changed files with 15 additions and 2 deletions

14
package-lock.json generated
View File

@@ -12,7 +12,8 @@
"axios": "^1.7.7", "axios": "^1.7.7",
"axios-cookiejar-support": "^5.0.3", "axios-cookiejar-support": "^5.0.3",
"tough-cookie": "^5.0.0", "tough-cookie": "^5.0.0",
"tough-cookie-file-store": "^2.0.3" "tough-cookie-file-store": "^2.0.3",
"yaml": "^2.6.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.9.0", "@types/node": "^22.9.0",
@@ -782,6 +783,17 @@
"querystringify": "^2.1.1", "querystringify": "^2.1.1",
"requires-port": "^1.0.0" "requires-port": "^1.0.0"
} }
},
"node_modules/yaml": {
"version": "2.6.0",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz",
"integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==",
"bin": {
"yaml": "bin.mjs"
},
"engines": {
"node": ">= 14"
}
} }
} }
} }

View File

@@ -17,6 +17,7 @@
"axios": "^1.7.7", "axios": "^1.7.7",
"axios-cookiejar-support": "^5.0.3", "axios-cookiejar-support": "^5.0.3",
"tough-cookie": "^5.0.0", "tough-cookie": "^5.0.0",
"tough-cookie-file-store": "^2.0.3" "tough-cookie-file-store": "^2.0.3",
"yaml": "^2.6.0"
} }
} }