麦克风,摄像头,屏幕共享页面
This commit is contained in:
+5
-2
@@ -6,7 +6,10 @@ case `uname` in
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../semver/bin/semver.js" "$@"
|
||||
"$basedir/node" "$basedir/../semver/bin/semver.js" "$@"
|
||||
ret=$?
|
||||
else
|
||||
exec node "$basedir/../semver/bin/semver.js" "$@"
|
||||
node "$basedir/../semver/bin/semver.js" "$@"
|
||||
ret=$?
|
||||
fi
|
||||
exit $ret
|
||||
|
||||
+66
-35
@@ -1,26 +1,43 @@
|
||||
{
|
||||
"name": "eslint-utils",
|
||||
"version": "3.0.0",
|
||||
"description": "Utilities for ESLint plugins.",
|
||||
"engines": {
|
||||
"node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"main": "index",
|
||||
"module": "index.mjs",
|
||||
"files": [
|
||||
"index.*"
|
||||
"_args": [
|
||||
[
|
||||
"eslint-utils@3.0.0",
|
||||
"E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.mjs",
|
||||
"require": "./index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
"_development": true,
|
||||
"_from": "eslint-utils@3.0.0",
|
||||
"_id": "eslint-utils@3.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
|
||||
"_location": "/eslint-plugin-vue/eslint-utils",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "eslint-utils@3.0.0",
|
||||
"name": "eslint-utils",
|
||||
"escapedName": "eslint-utils",
|
||||
"rawSpec": "3.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint-plugin-vue"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
|
||||
"_spec": "3.0.0",
|
||||
"_where": "E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "Toru Nagashima"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mysticatea/eslint-utils/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"eslint-visitor-keys": "^2.0.0"
|
||||
},
|
||||
"description": "Utilities for ESLint plugins.",
|
||||
"devDependencies": {
|
||||
"@mysticatea/eslint-plugin": "^13.0.0",
|
||||
"codecov": "^3.6.1",
|
||||
@@ -40,11 +57,36 @@
|
||||
"vuepress": "^1.2.0",
|
||||
"warun": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.mjs",
|
||||
"require": "./index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"files": [
|
||||
"index.*"
|
||||
],
|
||||
"funding": "https://github.com/sponsors/mysticatea",
|
||||
"homepage": "https://github.com/mysticatea/eslint-utils#readme",
|
||||
"keywords": [
|
||||
"eslint"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index",
|
||||
"module": "index.mjs",
|
||||
"name": "eslint-utils",
|
||||
"peerDependencies": {
|
||||
"eslint": ">=5"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/mysticatea/eslint-utils.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prebuild": "npm run -s clean",
|
||||
"build": "rollup -c",
|
||||
"clean": "rimraf .nyc_output coverage index.*",
|
||||
"codecov": "nyc report -r lcovonly && codecov",
|
||||
@@ -54,25 +96,14 @@
|
||||
"format": "npm run -s format:prettier -- --write",
|
||||
"format:prettier": "prettier docs/.vuepress/config.js src/**/*.js test/**/*.js rollup.config.js .vscode/*.json *.json .github/**/*.yml *.yml docs/**/*.md *.md",
|
||||
"lint": "eslint docs/.vuepress/config.js src test rollup.config.js",
|
||||
"postversion": "git push && git push --tags",
|
||||
"prebuild": "npm run -s clean",
|
||||
"preversion": "npm test && npm run -s build",
|
||||
"prewatch": "npm run -s clean",
|
||||
"test": "run-s \"format:prettier -- --check\" lint build test:mocha",
|
||||
"test:mocha": "nyc mocha --reporter dot \"test/*.js\"",
|
||||
"preversion": "npm test && npm run -s build",
|
||||
"postversion": "git push && git push --tags",
|
||||
"prewatch": "npm run -s clean",
|
||||
"watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/mysticatea/eslint-utils.git"
|
||||
},
|
||||
"keywords": [
|
||||
"eslint"
|
||||
],
|
||||
"author": "Toru Nagashima",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/mysticatea/eslint-utils/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mysticatea/eslint-utils#readme",
|
||||
"funding": "https://github.com/sponsors/mysticatea"
|
||||
"sideEffects": false,
|
||||
"version": "3.0.0"
|
||||
}
|
||||
|
||||
+63
-24
@@ -1,34 +1,73 @@
|
||||
{
|
||||
"name": "lru-cache",
|
||||
"_args": [
|
||||
[
|
||||
"lru-cache@6.0.0",
|
||||
"E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "lru-cache@6.0.0",
|
||||
"_id": "lru-cache@6.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
||||
"_location": "/eslint-plugin-vue/lru-cache",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "lru-cache@6.0.0",
|
||||
"name": "lru-cache",
|
||||
"escapedName": "lru-cache",
|
||||
"rawSpec": "6.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "6.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint-plugin-vue/semver"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
||||
"_spec": "6.0.0",
|
||||
"_where": "E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "Isaac Z. Schlueter",
|
||||
"email": "i@izs.me"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/isaacs/node-lru-cache/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"yallist": "^4.0.0"
|
||||
},
|
||||
"description": "A cache object that deletes the least-recently-used items.",
|
||||
"version": "6.0.0",
|
||||
"author": "Isaac Z. Schlueter <i@izs.me>",
|
||||
"devDependencies": {
|
||||
"benchmark": "^2.1.4",
|
||||
"tap": "^14.10.7"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/isaacs/node-lru-cache#readme",
|
||||
"keywords": [
|
||||
"mru",
|
||||
"lru",
|
||||
"cache"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "tap",
|
||||
"snap": "tap",
|
||||
"preversion": "npm test",
|
||||
"postversion": "npm publish",
|
||||
"prepublishOnly": "git push origin --follow-tags"
|
||||
},
|
||||
"main": "index.js",
|
||||
"repository": "git://github.com/isaacs/node-lru-cache.git",
|
||||
"devDependencies": {
|
||||
"benchmark": "^2.1.4",
|
||||
"tap": "^14.10.7"
|
||||
},
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"yallist": "^4.0.0"
|
||||
"main": "index.js",
|
||||
"name": "lru-cache",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/isaacs/node-lru-cache.git"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
}
|
||||
"scripts": {
|
||||
"postversion": "npm publish",
|
||||
"prepublishOnly": "git push origin --follow-tags",
|
||||
"preversion": "npm test",
|
||||
"snap": "tap",
|
||||
"test": "tap"
|
||||
},
|
||||
"version": "6.0.0"
|
||||
}
|
||||
|
||||
+62
-27
@@ -1,29 +1,53 @@
|
||||
{
|
||||
"name": "semver",
|
||||
"version": "7.5.4",
|
||||
"description": "The semantic version parser used by npm.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "tap",
|
||||
"snap": "tap",
|
||||
"lint": "eslint \"**/*.js\"",
|
||||
"postlint": "template-oss-check",
|
||||
"lintfix": "npm run lint -- --fix",
|
||||
"posttest": "npm run lint",
|
||||
"template-oss-apply": "template-oss-apply --force"
|
||||
"_args": [
|
||||
[
|
||||
"semver@7.5.4",
|
||||
"E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "semver@7.5.4",
|
||||
"_id": "semver@7.5.4",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
|
||||
"_location": "/eslint-plugin-vue/semver",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "semver@7.5.4",
|
||||
"name": "semver",
|
||||
"escapedName": "semver",
|
||||
"rawSpec": "7.5.4",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.5.4"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint-plugin-vue"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
|
||||
"_spec": "7.5.4",
|
||||
"_where": "E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "GitHub Inc."
|
||||
},
|
||||
"bin": {
|
||||
"semver": "bin/semver.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/npm/node-semver/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"lru-cache": "^6.0.0"
|
||||
},
|
||||
"description": "The semantic version parser used by npm.",
|
||||
"devDependencies": {
|
||||
"@npmcli/eslint-config": "^4.0.0",
|
||||
"@npmcli/template-oss": "4.17.0",
|
||||
"tap": "^16.0.0"
|
||||
},
|
||||
"license": "ISC",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/npm/node-semver.git"
|
||||
},
|
||||
"bin": {
|
||||
"semver": "bin/semver.js"
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
},
|
||||
"files": [
|
||||
"bin/",
|
||||
@@ -36,6 +60,23 @@
|
||||
"preload.js",
|
||||
"range.bnf"
|
||||
],
|
||||
"homepage": "https://github.com/npm/node-semver#readme",
|
||||
"license": "ISC",
|
||||
"main": "index.js",
|
||||
"name": "semver",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/npm/node-semver.git"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "eslint \"**/*.js\"",
|
||||
"lintfix": "npm run lint -- --fix",
|
||||
"postlint": "template-oss-check",
|
||||
"posttest": "npm run lint",
|
||||
"snap": "tap",
|
||||
"template-oss-apply": "template-oss-apply --force",
|
||||
"test": "tap"
|
||||
},
|
||||
"tap": {
|
||||
"timeout": 30,
|
||||
"coverage-map": "map.js",
|
||||
@@ -44,13 +85,6 @@
|
||||
"tap-snapshots/**"
|
||||
]
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
},
|
||||
"dependencies": {
|
||||
"lru-cache": "^6.0.0"
|
||||
},
|
||||
"author": "GitHub Inc.",
|
||||
"templateOSS": {
|
||||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
||||
"version": "4.17.0",
|
||||
@@ -83,5 +117,6 @@
|
||||
"/range.bnf"
|
||||
],
|
||||
"publish": "true"
|
||||
}
|
||||
},
|
||||
"version": "7.5.4"
|
||||
}
|
||||
|
||||
+52
-15
@@ -1,8 +1,46 @@
|
||||
{
|
||||
"name": "yallist",
|
||||
"version": "4.0.0",
|
||||
"_args": [
|
||||
[
|
||||
"yallist@4.0.0",
|
||||
"E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "yallist@4.0.0",
|
||||
"_id": "yallist@4.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
||||
"_location": "/eslint-plugin-vue/yallist",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "yallist@4.0.0",
|
||||
"name": "yallist",
|
||||
"escapedName": "yallist",
|
||||
"rawSpec": "4.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint-plugin-vue/lru-cache"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
||||
"_spec": "4.0.0",
|
||||
"_where": "E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "Isaac Z. Schlueter",
|
||||
"email": "i@izs.me",
|
||||
"url": "http://blog.izs.me/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/isaacs/yallist/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Yet Another Linked List",
|
||||
"main": "yallist.js",
|
||||
"devDependencies": {
|
||||
"tap": "^12.1.0"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
@@ -10,20 +48,19 @@
|
||||
"yallist.js",
|
||||
"iterator.js"
|
||||
],
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"tap": "^12.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tap test/*.js --100",
|
||||
"preversion": "npm test",
|
||||
"postversion": "npm publish",
|
||||
"postpublish": "git push origin --all; git push origin --tags"
|
||||
},
|
||||
"homepage": "https://github.com/isaacs/yallist#readme",
|
||||
"license": "ISC",
|
||||
"main": "yallist.js",
|
||||
"name": "yallist",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/isaacs/yallist.git"
|
||||
},
|
||||
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
||||
"license": "ISC"
|
||||
"scripts": {
|
||||
"postpublish": "git push origin --all; git push origin --tags",
|
||||
"postversion": "npm publish",
|
||||
"preversion": "npm test",
|
||||
"test": "tap test/*.js --100"
|
||||
},
|
||||
"version": "4.0.0"
|
||||
}
|
||||
|
||||
+90
-49
@@ -1,58 +1,53 @@
|
||||
{
|
||||
"name": "eslint-plugin-vue",
|
||||
"version": "8.7.1",
|
||||
"description": "Official ESLint plugin for Vue.js",
|
||||
"main": "lib/index.js",
|
||||
"scripts": {
|
||||
"new": "node tools/new-rule.js",
|
||||
"start": "npm run test:base -- --watch --growl",
|
||||
"test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
|
||||
"test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
|
||||
"debug": "mocha --inspect \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
|
||||
"cover": "npm run cover:test && npm run cover:report",
|
||||
"cover:test": "nyc npm run test:base -- --timeout 60000",
|
||||
"cover:report": "nyc report --reporter=html",
|
||||
"lint": "eslint . --rulesdir eslint-internal-rules && markdownlint \"**/*.md\"",
|
||||
"lint:fix": "eslint . --rulesdir eslint-internal-rules --fix && markdownlint \"**/*.md\" --fix",
|
||||
"tsc": "tsc",
|
||||
"preversion": "npm test && git add .",
|
||||
"version": "env-cmd -e version npm run update && npm run lint -- --fix && git add .",
|
||||
"update": "node ./tools/update.js",
|
||||
"docs:watch": "vuepress dev docs",
|
||||
"predocs:build": "npm run update",
|
||||
"docs:build": "vuepress build docs"
|
||||
"_args": [
|
||||
[
|
||||
"eslint-plugin-vue@8.7.1",
|
||||
"E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "eslint-plugin-vue@8.7.1",
|
||||
"_id": "eslint-plugin-vue@8.7.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==",
|
||||
"_location": "/eslint-plugin-vue",
|
||||
"_phantomChildren": {
|
||||
"eslint-visitor-keys": "2.1.0"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "eslint-plugin-vue@8.7.1",
|
||||
"name": "eslint-plugin-vue",
|
||||
"escapedName": "eslint-plugin-vue",
|
||||
"rawSpec": "8.7.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "8.7.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#DEV:/"
|
||||
],
|
||||
"homepage": "https://eslint.vuejs.org",
|
||||
"keywords": [
|
||||
"eslint",
|
||||
"eslint-plugin",
|
||||
"eslint-config",
|
||||
"vue",
|
||||
"vuejs",
|
||||
"rules"
|
||||
],
|
||||
"author": "Toru Nagashima (https://github.com/mysticatea)",
|
||||
"contributors": [
|
||||
"Michał Sajnóg <msajnog93@gmail.com> (https://github.com/michalsnik)",
|
||||
"Yosuke Ota (https://github.com/ota-meshi)"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
|
||||
"_resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.7.1.tgz",
|
||||
"_spec": "8.7.1",
|
||||
"_where": "E:\\云美\\调解\\视频会议\\Arbitrate-FrontendH5",
|
||||
"author": {
|
||||
"name": "Toru Nagashima",
|
||||
"url": "https://github.com/mysticatea"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/vuejs/eslint-plugin-vue/issues"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Michał Sajnóg",
|
||||
"email": "msajnog93@gmail.com",
|
||||
"url": "https://github.com/michalsnik"
|
||||
},
|
||||
{
|
||||
"name": "Yosuke Ota",
|
||||
"url": "https://github.com/ota-meshi"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"eslint-utils": "^3.0.0",
|
||||
"natural-compare": "^1.4.0",
|
||||
@@ -61,6 +56,7 @@
|
||||
"semver": "^7.3.5",
|
||||
"vue-eslint-parser": "^8.0.1"
|
||||
},
|
||||
"description": "Official ESLint plugin for Vue.js",
|
||||
"devDependencies": {
|
||||
"@types/eslint": "^7.28.1",
|
||||
"@types/eslint-visitor-keys": "^1.0.0",
|
||||
@@ -88,5 +84,50 @@
|
||||
"typescript": "^4.5.0",
|
||||
"vue-eslint-editor": "^1.1.0",
|
||||
"vuepress": "^1.8.2"
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"homepage": "https://eslint.vuejs.org",
|
||||
"keywords": [
|
||||
"eslint",
|
||||
"eslint-plugin",
|
||||
"eslint-config",
|
||||
"vue",
|
||||
"vuejs",
|
||||
"rules"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "eslint-plugin-vue",
|
||||
"peerDependencies": {
|
||||
"eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
|
||||
},
|
||||
"scripts": {
|
||||
"cover": "npm run cover:test && npm run cover:report",
|
||||
"cover:report": "nyc report --reporter=html",
|
||||
"cover:test": "nyc npm run test:base -- --timeout 60000",
|
||||
"debug": "mocha --inspect \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
|
||||
"docs:build": "vuepress build docs",
|
||||
"docs:watch": "vuepress dev docs",
|
||||
"lint": "eslint . --rulesdir eslint-internal-rules && markdownlint \"**/*.md\"",
|
||||
"lint:fix": "eslint . --rulesdir eslint-internal-rules --fix && markdownlint \"**/*.md\" --fix",
|
||||
"new": "node tools/new-rule.js",
|
||||
"predocs:build": "npm run update",
|
||||
"preversion": "npm test && git add .",
|
||||
"start": "npm run test:base -- --watch --growl",
|
||||
"test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
|
||||
"test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
|
||||
"tsc": "tsc",
|
||||
"update": "node ./tools/update.js",
|
||||
"version": "env-cmd -e version npm run update && npm run lint -- --fix && git add ."
|
||||
},
|
||||
"version": "8.7.1"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user