forked from doyoe/css-handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "css-handbook",
"title": "CSS参考手册",
"description": "CSS参考手册V4.2.7_Web前端开发参考手册系列",
"version": "4.2.7",
"homepage": "http://css.doyoe.com/",
"author": {
"name": "doyoe",
"url": "https://github.com/doyoe"
},
"repository": {
"type": "git",
"url": "https://github.com/doyoe/css-handbook.git"
},
"bugs": {
"url": "https://github.com/doyoe/css-handbook/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/lojjic/PIE/blob/master/LICENSE"
}
],
"dependencies": {},
"devDependencies": {
"caniuse-db": "^1.0.30000591",
"fs-extra-async": "^1.0.0",
"ghooks": "^1.3.2",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-convert-encoding": "^1.0.0",
"gulp-htmlhint": "^0.3.1",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.7",
"iconv-lite": "^0.4.15",
"jsdom": "^9.5.0",
"opener": "^1.4.2",
"through2": "^2.0.3",
"validate-commit-msg": "^2.12.2",
"which": "^1.2.12"
},
"scripts": {
"update": "npm i --save-dev caniuse-db && npm run build",
"test": "gulp lint",
"build": "gulp"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"test",
"chore",
"refactor",
"opti"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "请输入message信息!",
"helpMessage": "Commit message 格式错误,必须指定 commit type 类型"
}
}
}