forked from nextcloud-libraries/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@nextcloud/eslint-config",
"version": "8.4.1",
"description": "Eslint shared config for nextcloud vue.js apps",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/eslint-config.git"
},
"scripts": {
"lint": "eslint parts *.js",
"lint:fix": "eslint --fix parts *.js",
"test": "jest"
},
"peerDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.16.5",
"@nextcloud/eslint-plugin": "^2.2.1",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-vue": "^9.7.0",
"typescript": "^5.0.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@nextcloud/eslint-plugin": "^2.2.1",
"@types/eslint": "^8.56.7",
"@types/jest": "^29.5.12",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.5.2",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-vue": "^9.27.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.0",
"typescript": "^5.5.3",
"vue-eslint-parser": "^9.4.3"
},
"keywords": [
"eslint",
"vue",
"vuejs",
"config",
"nextcloud"
],
"author": "John Molakvoæ <[email protected]>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nextcloud-libraries/eslint-config/issues"
},
"homepage": "https://github.com/nextcloud-libraries/eslint-config#readme",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"eslintConfig": {
"extends": "./index.js"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./tests/setup-jest.ts"
]
}
}