1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "name": "eslint-plugin-vue",
- "version": "7.2.0",
- "description": "Official ESLint plugin for Vue.js",
- "main": "lib/index.js",
- "scripts": {
- "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",
- "lint:fix": "eslint . --rulesdir eslint-internal-rules --fix",
- "tsc": "tsc",
- "preversion": "npm test && npm run update && git add .",
- "version": "npm run lint -- --fix && git add .",
- "update": "node ./tools/update.js",
- "docs:watch": "vuepress dev docs",
- "docs:build": "vuepress build docs"
- },
- "files": [
- "lib"
- ],
- "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"
- },
- "bugs": {
- "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
- },
- "engines": {
- "node": ">=8.10"
- },
- "peerDependencies": {
- "eslint": "^6.2.0 || ^7.0.0"
- },
- "dependencies": {
- "eslint-utils": "^2.1.0",
- "natural-compare": "^1.4.0",
- "semver": "^7.3.2",
- "vue-eslint-parser": "^7.2.0"
- },
- "devDependencies": {
- "@types/eslint": "^7.2.0",
- "@types/natural-compare": "^1.4.0",
- "@types/node": "^13.13.5",
- "@types/semver": "^7.2.0",
- "@typescript-eslint/parser": "^3.0.2",
- "@vuepress/plugin-pwa": "^1.4.1",
- "babel-eslint": "^10.1.0",
- "eslint": "^7.0.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-eslint-plugin": "^2.2.1",
- "eslint-plugin-import": "^2.20.2",
- "eslint-plugin-prettier": "^3.1.3",
- "eslint-plugin-vue": "file:.",
- "eslint4b": "^7.0.0",
- "lodash": "^4.17.15",
- "mocha": "^7.1.2",
- "nyc": "^15.0.1",
- "prettier": "^2.1.1",
- "typescript": "^3.9.5",
- "vue-eslint-editor": "^1.1.0",
- "vuepress": "^1.4.1"
- }
- }
|