-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 1.2 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
{
"name": "@osmus/dogwood",
"version": "1.0.0",
"type": "module",
"scripts": {
"cache:embedded": "node ./_tools/embedded-page-cacher/index.js --srcdir=.",
"cache:images": "node ./_tools/image-cacher/index.js --srcdir=.",
"cache": "npm-run-all -p cache:*",
"stats": "node ./_tools/stats-analyzer/index.js --srcdir=.",
"thumbnails": "node ./_tools/thumbnail-generator/index.js --srcdir=.",
"validate:frontmatter": "node ./_tools/frontmatter-validator/index.js --srcdir=.",
"validate:people": "node ./_tools/people-validator/index.js --srcdir=.",
"validate": "npm-run-all -p validate:*",
"fix:people": "node ./_tools/people-validator/index.js --fix=true --srcdir=.",
"fix": "npm-run-all -p fix:*",
"docs": "mkdir -p ./docs && jsonschema2md -h=0 -f yaml -o ./docs -x ./docs -d ./_tools/frontmatter-validator/schemas"
},
"devDependencies": {
"@adobe/jsonschema2md": "^8.0.2",
"filenamify-url": "^3.1.0",
"follow-redirects": "^1.15.3",
"gray-matter": "^4.0.3",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"sharp": "^0.33.2",
"z-schema": "^6.0.1"
}
}