forked from thedaviddias/Front-End-Checklist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 691 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 691 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
27
28
{
"name": "front-end-checklist",
"version": "1.0.0",
"description": "The perfect Front-End Checklist for modern websites and meticulous developers",
"scripts": {
"format:check": "prettier --check README.md",
"format:fix": "prettier --write README.md && markdownlint README.md",
"prepare": "husky || true"
},
"keywords": [
"front-end",
"checklist",
"html",
"css",
"javascript",
"accessibility",
"lists",
"developer",
"developer-tools"
],
"author": "David Dias (https://thedaviddias.com/)",
"license": "CC-BY-4.0",
"devDependencies": {
"husky": "^9.1.6",
"markdownlint-cli": "^0.42.0",
"prettier": "^3.3.3"
}
}