forked from mdn/translated-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
36
37
38
39
40
41
42
{
"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"
},
"type": "module",
"scripts": {
"fix:json": "prettier -w \"**/*.json(c)?\"",
"fix:md": "markdownlint-cli2 --fix \"**/*.md\" && prettier -w \"**/*.md\"",
"fix:yml": "prettier -w \"**/*.yml\"",
"lint:json": "prettier -c \"**/*.json(c)?\"",
"lint:md": "markdownlint-cli2 \"**/*.md\" && prettier -c \"**/*.md\"",
"lint:yml": "prettier -c \"**/*.yml\"",
"prepare": "husky install"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cld": "^2.9.0",
"fdir": "^6.1.0",
"fs-extra": "^11.1.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"markdown-it": "^13.0.1",
"markdownlint-cli2": "0.9.2",
"markdownlint-rule-search-replace": "1.2.0",
"ora": "^7.0.1",
"prettier": "3.0.3",
"yargs": "^17.7.2"
}
}