-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "eslint-plugin-vue",
"version": "4.0.0-beta.4",
"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 run update && npm test",
"update": "node ./tools/update-rules.js"
},
"files": [
"lib"
],
"homepage": "https://github.com/vuejs/eslint-plugin-vue#readme",
"keywords": [
"eslint",
"eslint-plugin",
"eslint-config",
"vue",
"vuejs",
"rules"
],
"author": "Toru Nagashima (https://github.com/mysticatea)",
"contributors": [
"Michał Sajnóg <[email protected]> (http://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": ">=4"
},
"peerDependencies": {
"eslint": "^3.18.0 || ^4.0.0"
},
"dependencies": {
"require-all": "^2.2.0",
"vue-eslint-parser": "^2.0.1"
},
"devDependencies": {
"@types/node": "^4.2.16",
"babel-eslint": "^7.2.3",
"chai": "^4.1.0",
"eslint": "^4.12.1",
"eslint-plugin-eslint-plugin": "^0.8.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-vue-libs": "^2.0.0",
"mocha": "^3.2.0",
"nyc": "^11.1.0"
}
}