-
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) · 960 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 960 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": "engineering-standards",
"version": "1.0.0",
"description": "Acadify Solution's Engineering Standards, branch-protection models, pull-request requirements, automated style enforcement, and release notes checklists.",
"main": "index.js",
"scripts": {
"lint": "markdownlint \"**/*.md\" --ignore node_modules && npm run format:check",
"lint:fix": "markdownlint \"**/*.md\" --ignore node_modules --fix && npm run format",
"format": "prettier --write \"**/*.md\" \"**/*.json\"",
"format:check": "prettier --check \"**/*.md\" \"**/*.json\"",
"prepare": "husky"
},
"keywords": [
"engineering-standards",
"linting",
"formatting",
"prettier",
"git-hooks",
"husky"
],
"author": "Acadify Solution <contact@acadifysolution.com> (https://acadifysolution.com)",
"license": "UNLICENSED",
"devDependencies": {
"husky": "^9.0.11",
"markdownlint-cli": "^0.41.0",
"prettier": "^3.3.2"
}
}