node_modules: upgrade

This commit is contained in:
Dawid Dziurla
2025-06-14 23:18:18 +02:00
parent 948e4a4fb8
commit de40b1f21f
268 changed files with 2150 additions and 3858 deletions

31
node_modules/yaml/package.json generated vendored
View File

@@ -1,6 +1,6 @@
{
"name": "yaml",
"version": "2.3.4",
"version": "2.8.0",
"license": "ISC",
"author": "Eemeli Aro <eemeli@gmail.com>",
"repository": "github:eemeli/yaml",
@@ -18,6 +18,7 @@
],
"type": "commonjs",
"main": "./dist/index.js",
"bin": "./bin.mjs",
"browser": {
"./dist/index.js": "./browser/index.js",
"./dist/util.js": "./browser/dist/util.js",
@@ -41,10 +42,10 @@
"build:browser": "rollup -c config/rollup.browser-config.mjs",
"build:node": "rollup -c config/rollup.node-config.mjs",
"clean": "git clean -fdxe node_modules",
"lint": "eslint src/",
"lint": "eslint config/ src/",
"prettier": "prettier --write .",
"prestart": "npm run build:node",
"start": "node -i -e 'YAML=require(\"./dist/index.js\")'",
"prestart": "rollup --sourcemap -c config/rollup.node-config.mjs",
"start": "node --enable-source-maps -i -e 'YAML=require(\"./dist/index.js\");const{parse,parseDocument,parseAllDocuments}=YAML'",
"test": "jest --config config/jest.config.js",
"test:all": "npm test && npm run test:types && npm run test:dist && npm run test:dist:types",
"test:browsers": "cd playground && npm test",
@@ -52,7 +53,9 @@
"test:dist:types": "tsc --allowJs --moduleResolution node --noEmit --target es5 dist/index.js",
"test:types": "tsc --noEmit && tsc --noEmit -p tests/tsconfig.json",
"docs:install": "cd docs-slate && bundle install",
"predocs:deploy": "node docs/prepare-docs.mjs",
"docs:deploy": "cd docs-slate && ./deploy.sh",
"predocs": "node docs/prepare-docs.mjs",
"docs": "cd docs-slate && bundle exec middleman server",
"preversion": "npm test && npm run build",
"prepublishOnly": "npm run clean && npm test && npm run build"
@@ -66,30 +69,28 @@
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.17",
"@babel/preset-env": "^7.12.11",
"@eslint/js": "^9.9.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.2.4",
"@types/node": "^14.18.35",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@types/node": "^20.11.20",
"babel-jest": "^29.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.0.0",
"fast-check": "^2.12.0",
"jest": "^29.0.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^3.0.2",
"rollup": "^3.7.5",
"tslib": "^2.1.0",
"typescript": "^5.0.3"
"rollup": "^4.12.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.4.0"
},
"engines": {
"node": ">= 14"
"node": ">= 14.6"
}
}