-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 989 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
{
"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:*",
"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:*"
},
"devDependencies": {
"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"
}
}