-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.08 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
80
81
82
83
{
"name": "eslint-config-epsvue",
"version": "1.2.3",
"description": "A reusable and shareable `eslint` configuration for Vue project",
"main": "lib/index.js",
"files": [
"lib",
"stylelint"
],
"type": "module",
"scripts": {
"get-version": "node -p \"require('./package').version\"",
"publish:beta": "npm publish --tag beta",
"format": "prettier -w .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"stylelint": "stylelint --aei '**/*.{css,vue,scss}'",
"test": "node --test",
"watch": "npm test --ignore-scripts -- --watch"
},
"keywords": [
"eslint",
"prettier",
"vue",
"stylelint",
"eslint-config",
"stylelint-config",
"create-eslint-config"
],
"author": {
"name": "it-wibrc",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/IT-WIBRC/eslint-config-epsvue.git"
},
"peerDependencies": {
"eslint": ">=9",
"prettier": "^3.3.0",
"stylelint": "^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@eslint/js": "^9.14.0",
"@mapbox/stylelint-processor-arbitrary-tags": "^0.4.0",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-storybook": "^0.11.0",
"eslint-plugin-vue": "^9.30.0",
"globals": "^15.12.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"typescript-eslint": "^8.14.0"
},
"eslintConfig": {
"extends": [
"./lib/index.js"
]
},
"stylelint": {
"extends": "./stylelint/index.js"
},
"engineStrict": true,
"engines": {
"node": ">=18.18.0"
},
"bugs": {
"url": "https://github.com/IT-WIBRC/eslint-config-epsvue/issues"
},
"homepage": "https://github.com/IT-WIBRC/eslint-config-epsvue#readme",
"devDependencies": {
"mocha": "^10.8.2"
}
}