UNPKG

2.24 kBJSONView Raw
1{
2 "name": "eslint-plugin-vue",
3 "version": "7.0.0-alpha.0",
4 "description": "Official ESLint plugin for Vue.js",
5 "main": "lib/index.js",
6 "scripts": {
7 "start": "npm run test:base -- --watch --growl",
8 "test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
9 "test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
10 "debug": "mocha --inspect-brk \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
11 "cover:report": "nyc report --reporter=html",
12 "lint": "eslint . --rulesdir eslint-internal-rules",
13 "lint:fix": "eslint . --rulesdir eslint-internal-rules --fix",
14 "pretest": "npm run lint",
15 "preversion": "npm test && npm run update && git add .",
16 "version": "npm run lint -- --fix && git add .",
17 "update": "node ./tools/update.js",
18 "docs:watch": "vuepress dev docs",
19 "docs:build": "vuepress build docs"
20 },
21 "files": [
22 "lib"
23 ],
24 "homepage": "https://eslint.vuejs.org",
25 "keywords": [
26 "eslint",
27 "eslint-plugin",
28 "eslint-config",
29 "vue",
30 "vuejs",
31 "rules"
32 ],
33 "author": "Toru Nagashima (https://github.com/mysticatea)",
34 "contributors": [
35 "Michał Sajnóg <msajnog93@gmail.com> (https://github.com/michalsnik)"
36 ],
37 "license": "MIT",
38 "repository": {
39 "type": "git",
40 "url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
41 },
42 "bugs": {
43 "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
44 },
45 "engines": {
46 "node": ">=8.10"
47 },
48 "peerDependencies": {
49 "eslint": "^5.0.0 || ^6.0.0"
50 },
51 "dependencies": {
52 "eslint-utils": "^2.0.0",
53 "natural-compare": "^1.4.0",
54 "semver": "^5.6.0",
55 "vue-eslint-parser": "^7.0.0"
56 },
57 "devDependencies": {
58 "@types/node": "^4.2.16",
59 "@typescript-eslint/parser": "^2.6.1",
60 "acorn": "^7.1.0",
61 "babel-eslint": "^10.0.2",
62 "chai": "^4.1.0",
63 "eslint": "^6.0.0",
64 "eslint-plugin-eslint-plugin": "^2.0.1",
65 "eslint-plugin-import": "^2.18.2",
66 "eslint-plugin-vue": "file:.",
67 "eslint-plugin-vue-libs": "^4.0.0",
68 "eslint4b": "^6.6.0",
69 "lodash": "^4.17.4",
70 "mocha": "^5.2.0",
71 "nyc": "^12.0.2",
72 "typescript": "^3.5.2",
73 "vue-eslint-editor": "^0.1.4",
74 "vuepress": "^0.14.5"
75 }
76}