视频会议上传文件
This commit is contained in:
+73
-37
@@ -1,41 +1,42 @@
|
||||
{
|
||||
"name": "commander",
|
||||
"version": "7.2.0",
|
||||
"description": "the complete solution for node.js command-line programs",
|
||||
"keywords": [
|
||||
"commander",
|
||||
"command",
|
||||
"option",
|
||||
"parser",
|
||||
"cli",
|
||||
"argument",
|
||||
"args",
|
||||
"argv"
|
||||
"_args": [
|
||||
[
|
||||
"commander@7.2.0",
|
||||
"D:\\韩超勃\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/tj/commander.js.git"
|
||||
"_development": true,
|
||||
"_from": "commander@7.2.0",
|
||||
"_id": "commander@7.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
|
||||
"_location": "/webpack-bundle-analyzer/commander",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "commander@7.2.0",
|
||||
"name": "commander",
|
||||
"escapedName": "commander",
|
||||
"rawSpec": "7.2.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.2.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "eslint index.js esm.mjs \"tests/**/*.js\"",
|
||||
"typescript-lint": "eslint typings/*.ts tests/*.ts",
|
||||
"test": "jest && npm run test-typings",
|
||||
"test-esm": "node --experimental-modules ./tests/esm-imports-test.mjs",
|
||||
"test-typings": "tsd",
|
||||
"typescript-checkJS": "tsc --allowJS --checkJS index.js --noEmit",
|
||||
"test-all": "npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm"
|
||||
},
|
||||
"main": "./index.js",
|
||||
"files": [
|
||||
"index.js",
|
||||
"esm.mjs",
|
||||
"typings/index.d.ts",
|
||||
"package-support.json"
|
||||
"_requiredBy": [
|
||||
"/webpack-bundle-analyzer"
|
||||
],
|
||||
"type": "commonjs",
|
||||
"_resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
|
||||
"_spec": "7.2.0",
|
||||
"_where": "D:\\韩超勃\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "TJ Holowaychuk",
|
||||
"email": "tj@vision-media.ca"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/tj/commander.js/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "the complete solution for node.js command-line programs",
|
||||
"devDependencies": {
|
||||
"@types/jest": "^26.0.20",
|
||||
"@types/node": "^14.14.20",
|
||||
@@ -50,7 +51,16 @@
|
||||
"tsd": "^0.14.0",
|
||||
"typescript": "^4.1.2"
|
||||
},
|
||||
"types": "typings/index.d.ts",
|
||||
"engines": {
|
||||
"node": ">= 10"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"esm.mjs",
|
||||
"typings/index.d.ts",
|
||||
"package-support.json"
|
||||
],
|
||||
"homepage": "https://github.com/tj/commander.js#readme",
|
||||
"jest": {
|
||||
"testEnvironment": "node",
|
||||
"collectCoverage": true,
|
||||
@@ -61,8 +71,34 @@
|
||||
"/node_modules/"
|
||||
]
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 10"
|
||||
"keywords": [
|
||||
"commander",
|
||||
"command",
|
||||
"option",
|
||||
"parser",
|
||||
"cli",
|
||||
"argument",
|
||||
"args",
|
||||
"argv"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "./index.js",
|
||||
"name": "commander",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/tj/commander.js.git"
|
||||
},
|
||||
"support": true
|
||||
"scripts": {
|
||||
"lint": "eslint index.js esm.mjs \"tests/**/*.js\"",
|
||||
"test": "jest && npm run test-typings",
|
||||
"test-all": "npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm",
|
||||
"test-esm": "node --experimental-modules ./tests/esm-imports-test.mjs",
|
||||
"test-typings": "tsd",
|
||||
"typescript-checkJS": "tsc --allowJS --checkJS index.js --noEmit",
|
||||
"typescript-lint": "eslint typings/*.ts tests/*.ts"
|
||||
},
|
||||
"support": true,
|
||||
"type": "commonjs",
|
||||
"types": "typings/index.d.ts",
|
||||
"version": "7.2.0"
|
||||
}
|
||||
|
||||
Generated
Vendored
+72
-36
@@ -1,38 +1,74 @@
|
||||
{
|
||||
"name": "escape-string-regexp",
|
||||
"version": "4.0.0",
|
||||
"description": "Escape RegExp special characters",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/escape-string-regexp",
|
||||
"funding": "https://github.com/sponsors/sindresorhus",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "https://sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"escape",
|
||||
"regex",
|
||||
"regexp",
|
||||
"regular",
|
||||
"expression",
|
||||
"string",
|
||||
"special",
|
||||
"characters"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "^1.4.1",
|
||||
"tsd": "^0.11.0",
|
||||
"xo": "^0.28.3"
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"escape-string-regexp@4.0.0",
|
||||
"D:\\韩超勃\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "escape-string-regexp@4.0.0",
|
||||
"_id": "escape-string-regexp@4.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
||||
"_location": "/webpack-bundle-analyzer/escape-string-regexp",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "escape-string-regexp@4.0.0",
|
||||
"name": "escape-string-regexp",
|
||||
"escapedName": "escape-string-regexp",
|
||||
"rawSpec": "4.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/webpack-bundle-analyzer"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
||||
"_spec": "4.0.0",
|
||||
"_where": "D:\\韩超勃\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "https://sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/escape-string-regexp/issues"
|
||||
},
|
||||
"description": "Escape RegExp special characters",
|
||||
"devDependencies": {
|
||||
"ava": "^1.4.1",
|
||||
"tsd": "^0.11.0",
|
||||
"xo": "^0.28.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"funding": "https://github.com/sponsors/sindresorhus",
|
||||
"homepage": "https://github.com/sindresorhus/escape-string-regexp#readme",
|
||||
"keywords": [
|
||||
"escape",
|
||||
"regex",
|
||||
"regexp",
|
||||
"regular",
|
||||
"expression",
|
||||
"string",
|
||||
"special",
|
||||
"characters"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "escape-string-regexp",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/escape-string-regexp.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd"
|
||||
},
|
||||
"version": "4.0.0"
|
||||
}
|
||||
|
||||
+65
-31
@@ -1,37 +1,44 @@
|
||||
{
|
||||
"name": "webpack-bundle-analyzer",
|
||||
"version": "4.10.0",
|
||||
"description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
|
||||
"author": "Yury Grunin <grunin.ya@ya.ru>",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer",
|
||||
"changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
|
||||
"_args": [
|
||||
[
|
||||
"webpack-bundle-analyzer@4.10.0",
|
||||
"D:\\韩超勃\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "webpack-bundle-analyzer@4.10.0",
|
||||
"_id": "webpack-bundle-analyzer@4.10.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-j+apH0Cs+FY8IOIwxLbkgEJnbQgEPEG8uqLVnRb9tAoGbyKNxQA1u9wNDrTQHK3PinO4Pckew7AE7pnX/RS3wA==",
|
||||
"_location": "/webpack-bundle-analyzer",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "webpack-bundle-analyzer@4.10.0",
|
||||
"name": "webpack-bundle-analyzer",
|
||||
"escapedName": "webpack-bundle-analyzer",
|
||||
"rawSpec": "4.10.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.10.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@vue/cli-service"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.0.tgz",
|
||||
"_spec": "4.10.0",
|
||||
"_where": "D:\\韩超勃\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "Yury Grunin",
|
||||
"email": "grunin.ya@ya.ru"
|
||||
},
|
||||
"bin": {
|
||||
"webpack-bundle-analyzer": "lib/bin/analyzer.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"bin": "lib/bin/analyzer.js",
|
||||
"engines": {
|
||||
"node": ">= 10.13.0"
|
||||
},
|
||||
"packageManager": "npm@6.14.8",
|
||||
"scripts": {
|
||||
"start": "gulp watch",
|
||||
"build": "gulp build",
|
||||
"npm-publish": "npm run lint && npm run build && npm test && npm publish",
|
||||
"lint": "eslint --ext js,jsx .",
|
||||
"install-test-webpack-versions": "./bin/install-test-webpack-versions.sh",
|
||||
"test": "npm run install-test-webpack-versions && jest --runInBand",
|
||||
"test-dev": "npm run install-test-webpack-versions && jest --watch --runInBand"
|
||||
},
|
||||
"files": [
|
||||
"public",
|
||||
"lib"
|
||||
],
|
||||
"changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
|
||||
"dependencies": {
|
||||
"@discoveryjs/json-ext": "0.5.7",
|
||||
"acorn": "^8.0.4",
|
||||
@@ -47,6 +54,7 @@
|
||||
"sirv": "^2.0.3",
|
||||
"ws": "^7.3.1"
|
||||
},
|
||||
"description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.14.3",
|
||||
"@babel/plugin-proposal-class-properties": "7.13.0",
|
||||
@@ -94,6 +102,14 @@
|
||||
"webpack-cli": "3.3.12",
|
||||
"webpack-dev-server": "3.11.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 10.13.0"
|
||||
},
|
||||
"files": [
|
||||
"public",
|
||||
"lib"
|
||||
],
|
||||
"homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer",
|
||||
"keywords": [
|
||||
"webpack",
|
||||
"bundle",
|
||||
@@ -105,5 +121,23 @@
|
||||
"treemap",
|
||||
"zoomable",
|
||||
"zoom"
|
||||
]
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "webpack-bundle-analyzer",
|
||||
"packageManager": "npm@6.14.8",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp build",
|
||||
"install-test-webpack-versions": "./bin/install-test-webpack-versions.sh",
|
||||
"lint": "eslint --ext js,jsx .",
|
||||
"npm-publish": "npm run lint && npm run build && npm test && npm publish",
|
||||
"start": "gulp watch",
|
||||
"test": "npm run install-test-webpack-versions && jest --runInBand",
|
||||
"test-dev": "npm run install-test-webpack-versions && jest --watch --runInBand"
|
||||
},
|
||||
"version": "4.10.0"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user