generated from mdn/project-template
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
30 lines (30 loc) · 844 Bytes
/
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
{
"name": "@mdn/curriculum",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/mdn/curriculum.git"
},
"author": "MDN Web Docs",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/mdn/curriculum/issues"
},
"homepage": "https://github.com/mdn/curriculum#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"markdownlint-cli2": "^0.8.1",
"markdownlint-rule-search-replace": "^1.1.0",
"prettier": "^3.0.0"
},
"scripts": {
"prepare": "husky install",
"fix": "prettier --ignore-unknown --write \"**/*.md\" && markdownlint-cli2-fix \"**/*.md\"",
"lint": "prettier --ignore-unknown --check \"**/*.md\" && markdownlint-cli2 \"**/*.md\""
}
}