-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.74 KB
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
{
"name": "template",
"version": "1.0.0",
"private": true,
"description": "My repository template.",
"keywords": [
"template",
"repository",
"template-project",
"repository-template",
"repo-template",
"template-repository"
],
"homepage": "https://github.com/germanfrelo/template#readme",
"bugs": {
"url": "https://github.com/germanfrelo/template/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/germanfrelo/template.git"
},
"license": "MIT",
"author": "Germán Freixinós",
"type": "module",
"main": "",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run lint:css && npm run lint:js && npm run lint:md",
"lint:fix": "npm run lint:css:fix && npm run lint:js:fix && npm run lint:md:fix",
"lint:css": "stylelint --formatter verbose \"**/*.css\"",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js": "eslint --max-warnings 0",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint-cli2",
"lint:md:fix": "npm run lint:md -- --fix",
"prepare": "husky",
"test": "npm run format:check && npm run lint"
},
"lint-staged": {
"*.css": [
"stylelint",
"prettier --write"
],
"*.js": [
"eslint --max-warnings 0 --no-warn-ignored",
"prettier --write"
],
"*.md": [
"markdownlint-cli2 --fix"
],
"!(*.css|*.js|*.md)": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@eslint/js": "9.39.2",
"eslint": "9.39.2",
"globals": "17.0.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"markdownlint-cli2": "0.20.0",
"prettier": "3.6.2",
"stylelint": "16.26.1",
"stylelint-config-recess-order": "7.4.0",
"stylelint-config-standard": "39.0.1",
"stylelint-plugin-defensive-css": "1.0.4"
}
}