麦克风,摄像头,屏幕共享页面
This commit is contained in:
+51
-19
@@ -1,23 +1,37 @@
|
||||
{
|
||||
"name": "estraverse",
|
||||
"description": "ECMAScript JS AST traversal functions",
|
||||
"homepage": "https://github.com/estools/estraverse",
|
||||
"main": "estraverse.js",
|
||||
"version": "5.3.0",
|
||||
"engines": {
|
||||
"node": ">=4.0"
|
||||
},
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Yusuke Suzuki",
|
||||
"email": "utatane.tea@gmail.com",
|
||||
"web": "http://github.com/Constellation"
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"estraverse@5.3.0",
|
||||
"E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/estools/estraverse.git"
|
||||
"_development": true,
|
||||
"_from": "estraverse@5.3.0",
|
||||
"_id": "estraverse@5.3.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
||||
"_location": "/esquery/estraverse",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "estraverse@5.3.0",
|
||||
"name": "estraverse",
|
||||
"escapedName": "estraverse",
|
||||
"rawSpec": "5.3.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "5.3.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/esquery"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
||||
"_spec": "5.3.0",
|
||||
"_where": "E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5",
|
||||
"bugs": {
|
||||
"url": "https://github.com/estools/estraverse/issues"
|
||||
},
|
||||
"description": "ECMAScript JS AST traversal functions",
|
||||
"devDependencies": {
|
||||
"babel-preset-env": "^1.6.1",
|
||||
"babel-register": "^6.3.13",
|
||||
@@ -31,10 +45,28 @@
|
||||
"jshint": "^2.5.6",
|
||||
"mocha": "^2.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4.0"
|
||||
},
|
||||
"homepage": "https://github.com/estools/estraverse",
|
||||
"license": "BSD-2-Clause",
|
||||
"main": "estraverse.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Yusuke Suzuki",
|
||||
"email": "utatane.tea@gmail.com",
|
||||
"url": "http://github.com/Constellation"
|
||||
}
|
||||
],
|
||||
"name": "estraverse",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/estools/estraverse.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "npm run-script lint && npm run-script unit-test",
|
||||
"lint": "jshint estraverse.js",
|
||||
"test": "npm run-script lint && npm run-script unit-test",
|
||||
"unit-test": "mocha --compilers js:babel-register"
|
||||
}
|
||||
},
|
||||
"version": "5.3.0"
|
||||
}
|
||||
|
||||
+88
-53
@@ -1,55 +1,46 @@
|
||||
{
|
||||
"name": "esquery",
|
||||
"version": "1.5.0",
|
||||
"author": "Joel Feenstra <jrfeenst+esquery@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "A query library for ECMAScript AST using a CSS selector like query language.",
|
||||
"main": "dist/esquery.min.js",
|
||||
"module": "dist/esquery.esm.min.js",
|
||||
"files": [
|
||||
"dist/*.js",
|
||||
"dist/*.map",
|
||||
"parser.js",
|
||||
"license.txt",
|
||||
"README.md"
|
||||
],
|
||||
"nyc": {
|
||||
"branches": 100,
|
||||
"lines": 100,
|
||||
"functions": 100,
|
||||
"statements": 100,
|
||||
"reporter": [
|
||||
"html",
|
||||
"text"
|
||||
],
|
||||
"exclude": [
|
||||
"parser.js",
|
||||
"dist",
|
||||
"tests"
|
||||
"_args": [
|
||||
[
|
||||
"esquery@1.5.0",
|
||||
"E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"prepublishOnly": "npm run build && npm test",
|
||||
"build:parser": "rm parser.js && pegjs --cache --format umd -o \"parser.js\" \"grammar.pegjs\"",
|
||||
"build:browser": "rollup -c",
|
||||
"build": "npm run build:parser && npm run build:browser",
|
||||
"mocha": "mocha --require chai/register-assert --require @babel/register tests",
|
||||
"test": "nyc npm run mocha && npm run lint",
|
||||
"test:ci": "npm run mocha",
|
||||
"lint": "eslint ."
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/estools/esquery.git"
|
||||
},
|
||||
"bugs": "https://github.com/estools/esquery/issues",
|
||||
"homepage": "https://github.com/estools/esquery/",
|
||||
"keywords": [
|
||||
"ast",
|
||||
"ecmascript",
|
||||
"javascript",
|
||||
"query"
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "esquery@1.5.0",
|
||||
"_id": "esquery@1.5.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
|
||||
"_location": "/esquery",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "esquery@1.5.0",
|
||||
"name": "esquery",
|
||||
"escapedName": "esquery",
|
||||
"rawSpec": "1.5.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.5.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint",
|
||||
"/vue-eslint-parser"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
|
||||
"_spec": "1.5.0",
|
||||
"_where": "E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "Joel Feenstra",
|
||||
"email": "jrfeenst+esquery@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/estools/esquery/issues"
|
||||
},
|
||||
"contributors": [],
|
||||
"dependencies": {
|
||||
"estraverse": "^5.1.0"
|
||||
},
|
||||
"description": "A query library for ECMAScript AST using a CSS selector like query language.",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/preset-env": "^7.9.5",
|
||||
@@ -68,11 +59,55 @@
|
||||
"rollup-plugin-babel": "^4.4.0",
|
||||
"rollup-plugin-terser": "^5.3.0"
|
||||
},
|
||||
"license": "BSD-3-Clause",
|
||||
"engines": {
|
||||
"node": ">=0.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"estraverse": "^5.1.0"
|
||||
}
|
||||
"files": [
|
||||
"dist/*.js",
|
||||
"dist/*.map",
|
||||
"parser.js",
|
||||
"license.txt",
|
||||
"README.md"
|
||||
],
|
||||
"homepage": "https://github.com/estools/esquery/",
|
||||
"keywords": [
|
||||
"ast",
|
||||
"ecmascript",
|
||||
"javascript",
|
||||
"query"
|
||||
],
|
||||
"license": "BSD-3-Clause",
|
||||
"main": "dist/esquery.min.js",
|
||||
"module": "dist/esquery.esm.min.js",
|
||||
"name": "esquery",
|
||||
"nyc": {
|
||||
"branches": 100,
|
||||
"lines": 100,
|
||||
"functions": 100,
|
||||
"statements": 100,
|
||||
"reporter": [
|
||||
"html",
|
||||
"text"
|
||||
],
|
||||
"exclude": [
|
||||
"parser.js",
|
||||
"dist",
|
||||
"tests"
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/estools/esquery.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build:parser && npm run build:browser",
|
||||
"build:browser": "rollup -c",
|
||||
"build:parser": "rm parser.js && pegjs --cache --format umd -o \"parser.js\" \"grammar.pegjs\"",
|
||||
"lint": "eslint .",
|
||||
"mocha": "mocha --require chai/register-assert --require @babel/register tests",
|
||||
"prepublishOnly": "npm run build && npm test",
|
||||
"test": "nyc npm run mocha && npm run lint",
|
||||
"test:ci": "npm run mocha"
|
||||
},
|
||||
"version": "1.5.0"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user