-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
executable file
·50 lines (50 loc) · 1.52 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
{
"name": "eslint-plugin-vuetify",
"version": "2.5.1",
"description": "An eslint plugin for Vuetify",
"main": "lib/index.js",
"author": "Kael Watts-Deuchar <kaelwd@gmail.com>",
"license": "MIT",
"repository": "github:vuetifyjs/eslint-plugin-vuetify",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"test": "mocha tests --recursive --reporter dot",
"test:8": "ESLINT8=true mocha tests --recursive --reporter dot",
"test:coverage": "nyc mocha tests --recursive --reporter dot",
"test:ci": "nyc --reporter=lcov mocha tests --recursive --reporter dot",
"lint": "eslint src tests",
"prepublishOnly": "npm run build"
},
"files": [
"lib"
],
"homepage": "https://github.com/vuetifyjs/eslint-plugin-vuetify#readme",
"dependencies": {
"eslint-plugin-vue": "^9.6.0",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@stylistic/eslint-plugin": "^2.10.1",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-vuetify": "^1.1.0",
"conventional-github-releaser": "^3.1.5",
"eslint": "^9.14.0",
"eslint8": "npm:eslint@8.57.1",
"husky": "^8.0.1",
"mocha": "^10.1.0",
"neostandard": "^0.11.8",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"vue": "^3.5.12",
"vue-eslint-parser": "^9.4.3",
"vuetify": "^3.7.4"
},
"peerDependencies": {
"eslint": "^8.0.0 || ^9.0.0",
"vuetify": "^3.0.0"
},
"packageManager": "pnpm@9.13.2"
}