-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 833 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 833 Bytes
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
{
"name": "@dzcode.io/tooling",
"description": "tooling related files, such as tsconfig.json ...etc",
"version": "6.1.0",
"author": {
"email": "zakman.dev@gmail.com",
"name": "Zakaria Mansouri",
"url": "https://zakiii.com/"
},
"license": "MIT",
"lint-staged": {
"*.*": [
"npm run lint:eslint --fix",
"npm run lint:prettier -- --write"
]
},
"private": true,
"scripts": {
"lint": "npm run lint:alone",
"lint:alone": "npm run lint:eslint . && npm run lint:prettier -- --check .",
"lint:eslint": "eslint --config eslint.config.mjs",
"lint:fix": "npm run lint:fix:alone",
"lint:fix:alone": "npm run lint:eslint --fix . && npm run lint:prettier -- --write .",
"lint:prettier": "prettier --config .prettierrc --ignore-path .prettierignore --log-level warn"
}
}