-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 674 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "dskd",
"version": "9.19.4",
"description": "oti による個人ウェブサイト『dskd』の開発環境",
"keywords": [],
"license": "CC BY-NC",
"author": "oti",
"scripts": {
"build": "node task/build.mjs",
"create-draft-post": "node task/draft-post.mjs",
"html": "node task/build.mjs --only-html",
"prebuild": "rm -rf dist",
"start": "npm run build && cd dist && python3 -m http.server 3000",
"test:css": "npx stylelint 'dist/**/*.css'",
"test:html": "npx markuplint 'dist/**/*.html'",
"test": "npm run test:css && npm run test:html"
},
"devDependencies": {
"marked": "^17.0.3",
"pug": "^3.0.3"
}
}