Update checked-in dependencies
This commit is contained in:
parent
3d19b71b35
commit
3dfa09571f
349 changed files with 6162 additions and 3720 deletions
120
node_modules/uuid/package.json
generated
vendored
120
node_modules/uuid/package.json
generated
vendored
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"name": "uuid",
|
||||
"version": "10.0.0",
|
||||
"version": "11.0.1",
|
||||
"description": "RFC9562 UUIDs",
|
||||
"type": "module",
|
||||
"funding": [
|
||||
"https://github.com/sponsors/broofa",
|
||||
"https://github.com/sponsors/ctavan"
|
||||
|
|
@ -19,32 +20,29 @@
|
|||
],
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"uuid": "dist/bin/uuid"
|
||||
"uuid": "./dist/esm/bin/uuid"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"main": "./dist/index.js",
|
||||
"main": "./dist/cjs/index.js",
|
||||
"exports": {
|
||||
".": {
|
||||
"node": {
|
||||
"module": "./dist/esm-node/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"module": "./dist/esm/index.js",
|
||||
"require": "./dist/cjs/index.js",
|
||||
"import": "./wrapper.mjs"
|
||||
},
|
||||
"browser": {
|
||||
"import": "./dist/esm-browser/index.js",
|
||||
"require": "./dist/commonjs-browser/index.js"
|
||||
"require": "./dist/cjs-browser/index.js"
|
||||
},
|
||||
"default": "./dist/esm-browser/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"module": "./dist/esm-node/index.js",
|
||||
"module": "./dist/esm/index.js",
|
||||
"browser": {
|
||||
"./dist/esm-node/index.js": "./dist/esm-browser/index.js",
|
||||
"./dist/md5.js": "./dist/md5-browser.js",
|
||||
"./dist/native.js": "./dist/native-browser.js",
|
||||
"./dist/rng.js": "./dist/rng-browser.js",
|
||||
"./dist/sha1.js": "./dist/sha1-browser.js"
|
||||
"./dist/esm/index.js": "./dist/esm-browser/index.js",
|
||||
"./dist/cjs/index.js": "./dist/cjs-browser/index.js"
|
||||
},
|
||||
"files": [
|
||||
"CHANGELOG.md",
|
||||
|
|
@ -55,75 +53,71 @@
|
|||
"wrapper.mjs"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.24.6",
|
||||
"@babel/core": "7.24.6",
|
||||
"@babel/eslint-parser": "7.24.6",
|
||||
"@babel/plugin-syntax-import-attributes": "7.24.6",
|
||||
"@babel/preset-env": "7.24.6",
|
||||
"@commitlint/cli": "19.3.0",
|
||||
"@commitlint/config-conventional": "19.2.2",
|
||||
"@wdio/browserstack-service": "7.16.10",
|
||||
"@wdio/cli": "7.16.10",
|
||||
"@wdio/jasmine-framework": "7.16.6",
|
||||
"@wdio/local-runner": "7.16.10",
|
||||
"@wdio/spec-reporter": "7.16.9",
|
||||
"@wdio/static-server-service": "7.16.6",
|
||||
"bundlewatch": "0.3.3",
|
||||
"eslint": "9.4.0",
|
||||
"eslint-plugin-prettier": "5.1.3",
|
||||
"globals": "15.3.0",
|
||||
"husky": "9.0.11",
|
||||
"@babel/eslint-parser": "7.25.9",
|
||||
"@commitlint/cli": "19.5.0",
|
||||
"@commitlint/config-conventional": "19.5.0",
|
||||
"@eslint/js": "9.13.0",
|
||||
"@types/eslint__js": "8.42.3",
|
||||
"bundlewatch": "0.4.0",
|
||||
"eslint": "9.13.0",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"eslint-plugin-prettier": "5.2.1",
|
||||
"globals": "15.11.0",
|
||||
"husky": "9.1.6",
|
||||
"jest": "29.7.0",
|
||||
"lint-staged": "15.2.5",
|
||||
"neostandard": "0.5.1",
|
||||
"lint-staged": "15.2.10",
|
||||
"neostandard": "0.11.7",
|
||||
"npm-run-all": "4.1.5",
|
||||
"optional-dev-dependency": "2.0.1",
|
||||
"prettier": "3.3.0",
|
||||
"random-seed": "0.3.0",
|
||||
"prettier": "3.3.3",
|
||||
"release-please": "16.14.3",
|
||||
"runmd": "1.3.9",
|
||||
"standard-version": "9.5.0"
|
||||
"standard-version": "9.5.0",
|
||||
"typescript": "5.6.3",
|
||||
"typescript-eslint": "8.11.0"
|
||||
},
|
||||
"optionalDevDependencies": {
|
||||
"@wdio/browserstack-service": "7.16.10",
|
||||
"@wdio/cli": "7.16.10",
|
||||
"@wdio/jasmine-framework": "7.16.6",
|
||||
"@wdio/local-runner": "7.16.10",
|
||||
"@wdio/spec-reporter": "7.16.9",
|
||||
"@wdio/static-server-service": "7.16.6"
|
||||
"@wdio/browserstack-service": "9.2.1",
|
||||
"@wdio/cli": "9.2.1",
|
||||
"@wdio/jasmine-framework": "9.2.1",
|
||||
"@wdio/local-runner": "9.2.1",
|
||||
"@wdio/spec-reporter": "9.1.3",
|
||||
"@wdio/static-server-service": "9.1.3"
|
||||
},
|
||||
"scripts": {
|
||||
"examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build",
|
||||
"build": "./scripts/build.sh",
|
||||
"build:watch": "tsc --watch -p tsconfig.esm.json",
|
||||
"bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
|
||||
"docs:diff": "npm run docs && git diff --quiet README.md",
|
||||
"docs": "npm run build && npx runmd --output=README.md README_js.md",
|
||||
"eslint:check": "eslint src/ test/ examples/ *.[jt]s",
|
||||
"eslint:fix": "eslint --fix src/ test/ examples/ *.[jt]s",
|
||||
"examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build",
|
||||
"examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build",
|
||||
"examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test",
|
||||
"examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test",
|
||||
"examples:node:jest:test": "cd examples/node-jest && npm install && npm test",
|
||||
"prepare": "husky install",
|
||||
"lint": "npm run eslint:check && npm run prettier:check",
|
||||
"eslint:check": "eslint src/ test/ examples/ *.js",
|
||||
"eslint:fix": "eslint --fix src/ test/ examples/ *.js",
|
||||
"pretest": "npm run build",
|
||||
"test": "BABEL_ENV=commonjsNode node --throw-deprecation node_modules/.bin/jest test/unit/",
|
||||
"test:matching": "BABEL_ENV=commonjsNode node --throw-deprecation node_modules/.bin/jest test/unit/ -t",
|
||||
"pretest:browser": "optional-dev-dependency && npm run build && npm-run-all --parallel examples:browser:**",
|
||||
"test:browser": "wdio run ./wdio.conf.js",
|
||||
"pretest:node": "npm run build",
|
||||
"test:node": "npm-run-all --parallel examples:node:**",
|
||||
"test:pack": "./scripts/testpack.sh",
|
||||
"md": "runmd --watch --output=README.md README_js.md",
|
||||
"prepack": "npm run build",
|
||||
"prepare": "husky",
|
||||
"pretest:benchmark": "npm run build",
|
||||
"test:benchmark": "cd examples/benchmark && HUSKY=0 npm install && npm test",
|
||||
"pretest:browser": "optional-dev-dependency && npm run build && npm-run-all --parallel examples:browser:**",
|
||||
"pretest:node": "npm run build",
|
||||
"pretest": "npm run build",
|
||||
"prettier:check": "prettier --check .",
|
||||
"prettier:fix": "prettier --write .",
|
||||
"bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
|
||||
"md": "runmd --watch --output=README.md README_js.md",
|
||||
"docs": "npm run build && npx runmd --output=README.md README_js.md",
|
||||
"docs:diff": "npm run docs && git diff --quiet README.md",
|
||||
"build": "./scripts/build.sh",
|
||||
"prepack": "npm run build",
|
||||
"release": "standard-version --no-verify"
|
||||
"release": "standard-version --no-verify",
|
||||
"test:benchmark": "cd examples/benchmark && HUSKY=0 npm install && npm test",
|
||||
"test:browser": "wdio run ./wdio.conf.js",
|
||||
"test:node": "npm-run-all --parallel examples:node:**",
|
||||
"test:pack": "./scripts/testpack.sh",
|
||||
"test:watch": "node --test --enable-source-maps --watch dist/esm/test/*.js",
|
||||
"test": "node --test --enable-source-maps dist/esm/test/*.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/uuidjs/uuid.git"
|
||||
"url": "https://github.com/uuidjs/uuid.git"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*": [
|
||||
|
|
@ -138,5 +132,5 @@
|
|||
"postchangelog": "prettier --write CHANGELOG.md"
|
||||
}
|
||||
},
|
||||
"packageManager": "npm@10.8.1+sha256.b8807aebb9656758e2872fa6e7c564b506aa2faa9297439a478d471d2fe32483"
|
||||
"packageManager": "npm@10.9.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue