forked from mdn/translated-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 KB
/
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
31
32
33
34
35
{
"name": "@mdn/translated-content",
"version": "1.0.0",
"description": "Translated content of https://developer.mozilla.org",
"private": true,
"homepage": "https://github.com/mdn/translated-content#readme",
"bugs": {
"url": "https://github.com/mdn/translated-content/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "MDN Web Docs",
"repository": {
"type": "git",
"url": "git+https://github.com/mdn/translated-content.git"
},
"scripts": {
"fix:json": "prettier -w \"**/*.json\"",
"fix:md": "markdownlint-cli2-fix \"**/*.md\"",
"fix:yml": "prettier -w \"**/*.yml\"",
"lint:json": "prettier -c \"**/*.json\"",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:yml": "prettier -c \"**/*.yml\"",
"prepare": "husky install"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"husky": "8.0.3",
"lint-staged": "13.2.2",
"markdownlint-cli2": "0.7.1",
"markdownlint-rule-search-replace": "1.0.10",
"prettier": "2.8.8"
}
}