forked from MuYunyun/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 693 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 693 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
{
"name": "blog",
"description": "life is a moment",
"repository": {
"type": "git",
"url": "git+https://github.com/MuYunyun/blog.git"
},
"keywords": [
"Blog",
"React",
"JavaScript",
"Data_Structure",
"Design_Pattern"
],
"author": "muyunyun",
"homepage": "https://github.com/MuYunyun/blog#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.md": [
"lint-md"
]
},
"devDependencies": {
"commitlint": "^8.3.5",
"husky": "^3.0.3",
"lint-md": "^0.2.0",
"lint-md-cli": "^0.1.1",
"lint-staged": "^9.2.1"
}
}