forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "eslint-plugin-vue",
"version": "7.0.0-alpha.6",
"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-brk \"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",
"pretsc": "node ./tools/setup-eslint-rule-types.js",
"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 <[email protected]> (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.0.0 || ^7.0.0"
},
"dependencies": {
"@types/semver": "^7.2.0",
"eslint-utils": "^2.0.0",
"natural-compare": "^1.4.0",
"semver": "^7.3.2",
"vue-eslint-parser": "^7.1.0"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/natural-compare": "^1.4.0",
"@types/node": "^13.13.5",
"@typescript-eslint/parser": "^3.0.2",
"@vuepress/plugin-pwa": "^1.4.1",
"babel-eslint": "^10.1.0",
"chai": "^4.2.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:.",
"eslint-plugin-vue-libs": "^4.0.0",
"eslint4b": "^7.0.0",
"lodash": "^4.17.15",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"typescript": "^3.9.5",
"vue-eslint-editor": "^1.1.0",
"vuepress": "^1.4.1"
},
"publishConfig": {
"tag": "next"
}
}