-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "@dsb-norge/eslint-config-dsb-vue3",
"version": "2.0.0",
"description": "ESLint standard config for Vue.js projects",
"keywords": [
"eslint",
"eslint-config",
"eslintconfig"
],
"scripts": {
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix"
},
"main": "index.js",
"files": [
"index.js"
],
"author": "Nils Lien <nils.lien@dsb.no>",
"contributors": [
{
"name": "Chris Aurora Neumann Ruud",
"email": "chris.ruud@dsb.no"
}
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:dsb-norge/eslint-config-dsb-vue3.git"
},
"bugs": {
"url": "https://github.com/dsb-norge/eslint-config-dsb-vue3/issues"
},
"homepage": "https://github.com/dsb-norge/eslint-config-dsb-vue3",
"peerDependencies": {
"@stylistic/eslint-plugin": ">= 1.6.1 <2",
"eslint": ">=8.56.0 <9",
"eslint-config-standard": ">=17.0.0 <18",
"eslint-plugin-import": ">=2.29.1 <3",
"eslint-plugin-n": ">=16.6.2 <17",
"eslint-plugin-promise": ">=6.1.1 <7",
"eslint-plugin-vue": ">=9.21.1 < 10",
"eslint-plugin-vuejs-accessibility": ">=2.2.1 < 3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "1.8.1",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-vue": "9.32.0",
"eslint-plugin-vuejs-accessibility": "2.4.1"
}
}