-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "eslint-config-valantic",
"version": "16.0.2",
"description": "The default ESLint config of valantic.",
"main": "index.js",
"scripts": {
"test": "eslint tests/tests.js --config index.js; exit 0",
"test:ts": "eslint tests/tests.ts --config typescript.js; exit 0",
"test:vue": "eslint tests/vue2.vue --config vue.js; exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/valantic/eslint-config-valantic.git"
},
"author": "valantic",
"license": "MIT",
"keywords": [
"eslint",
"valantic",
"eslint-config"
],
"devDependencies": {
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-plugin-import": "^2.28.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"eslint": ">= 8.51 < 9",
"eslint-config-airbnb-base": "15.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-vue": "^9.17.0"
},
"engines": {
"node": ">= 12"
}
}