-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 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
{
"name": "podcast",
"private": true,
"type": "module",
"scripts": {
"test": "editorconfig-checker && eslint",
"build": "eleventy",
"mp3": "cd src/mp3 && rsync --progress --archive --compress --delete --delete-excluded --exclude .DS_Store . [email protected]:/var/www/web-standards.ru/podcast/episodes/",
"cover": "cd src && rsync --archive --compress cover.png [email protected]:/var/www/web-standards.ru/podcast/",
"feed": "cd dist && rsync --archive --compress index.xml [email protected]:/var/www/web-standards.ru/podcast/feed/",
"deploy": "npm run mp3 && npm run cover && npm run feed",
"new": "node scripts/new.js",
"file-size": "node scripts/file-size.js",
"prepare": "husky || true"
},
"engines": {
"node": "22"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin-js": "^2.13.0",
"editorconfig-checker": "^6.0.1",
"get-mp3-duration": "^1.0.0",
"globals": "^15.14.0",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"minify-xml": "^4.5.2"
}
}