forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "eslint-plugin-vue",
"version": "5.2.2",
"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",
"lint": "eslint . --rulesdir eslint-internal-rules",
"pretest": "npm run lint",
"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)"
],
"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": ">=6.5"
},
"peerDependencies": {
"eslint": "^5.0.0"
},
"dependencies": {
"vue-eslint-parser": "^6.0.2"
},
"devDependencies": {
"@types/node": "^4.2.16",
"babel-eslint": "^8.2.2",
"chai": "^4.1.0",
"eslint": "^5.11.1",
"eslint-plugin-eslint-plugin": "^2.0.1",
"eslint-plugin-vue-libs": "^3.0.0",
"eslint4b": "^5.1.0",
"lodash": "^4.17.4",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"semver": "^5.6.0",
"typescript": "^3.1.3",
"typescript-eslint-parser": "^20.0.0",
"vue-eslint-editor": "^0.1.4",
"vuepress": "^0.14.5"
}
}