-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 871 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 871 Bytes
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
{
"name": "osh-2023",
"version": "1.0.0",
"description": "USTC OSH 2023 课程主页",
"main": "index.js",
"private": true,
"scripts": {
"test": "prettier --check docs",
"format": "prettier --write docs",
"prepare": "husky install",
"dev": "mkdocs serve",
"build": "mkdocs build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSH-2023/OSH-2023.github.io.git"
},
"keywords": [
"ustc",
"osh",
"course"
],
"author": "OSH-2023",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OSH-2023/OSH-2023.github.io/issues"
},
"homepage": "https://github.com/OSH-2023/OSH-2023.github.io#readme",
"dependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1"
},
"lint-staged": {
"docs/**/*": "prettier --write --ignore-unknown"
}
}