-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "eslint-config-maasglobal",
"version": "6.0.3",
"description": "ESLint config for MaaS projects",
"author": "MaaS Team",
"keywords": [
"eslint-config",
"eslint"
],
"repository": {
"type": "git",
"url": "git://github.com/maasglobal/eslint-config-maasglobal.git"
},
"dependencies": {
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-import": "^2.29.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"git-list-updated": "^1.1.2",
"prettier": "^3.2.5"
},
"peerDependencies": {
"eslint": ">=7"
},
"eslintConfig": {
"extends": "./index.js"
},
"scripts": {
"lint": "eslint --ignore-path=.gitignore .",
"lint-updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
"prettify-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write"
}
}