-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.91 KB
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
{
"name": "eslint-plugin-vuetify",
"version": "2.7.0",
"description": "An eslint plugin for Vuetify",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Kael Watts-Deuchar <[email protected]>",
"license": "MIT",
"repository": "github:vuetifyjs/eslint-plugin-vuetify",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib --copy-files && pnpm typegen",
"test": "mocha tests --recursive --reporter dot",
"test:8": "cross-env ESLINT8=true mocha tests --recursive --reporter dot",
"test:9": "cross-env ESLINT9=true mocha tests --recursive --reporter dot",
"test:coverage": "nyc mocha tests --recursive --reporter dot",
"test:ci": "nyc --reporter=lcov mocha tests --recursive --reporter dot",
"typegen": "node tools/generate-dts.mjs",
"lint": "eslint src tests",
"prepublishOnly": "npm run build",
"release": "bumpp -r"
},
"files": [
"lib"
],
"homepage": "https://github.com/vuetifyjs/eslint-plugin-vuetify#readme",
"dependencies": {
"eslint-plugin-vue": "^10.8.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": "^4.4.1",
"bumpp": "^10.1.0",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-vuetify": "^2.0.2",
"conventional-github-releaser": "^3.1.5",
"cross-env": "^7.0.3",
"eslint": "^10.0.0",
"eslint-plugin-vue": "^10.0.0",
"eslint-typegen": "^2.3.1",
"eslint8": "npm:[email protected]",
"eslint9": "npm:eslint@9",
"husky": "^8.0.1",
"mocha": "^10.1.0",
"neostandard": "^0.13.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"vue": "^3.5.13",
"vue-eslint-parser": "^10.1.1",
"vuetify": "^3.7.17"
},
"peerDependencies": {
"eslint": "^8.0.0 || ^9.0.0 || ^10.0.0",
"vuetify": "^3.0.0 || ^4.0.0"
},
"packageManager": "[email protected]"
}