-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "hyperbench-common",
"version": "0.0.4",
"description": "hyperbench-common is common package used by hyperbench and hyperbench-plugins",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "github.cn/hyperbench/hyperbench-common"
},
"keywords": [
"blockchain",
"hyperbench"
],
"author": "Hyperbench-common Authors",
"license": "Apache-2.0",
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.2",
"standard-version": "^4.3.0",
"validate-commit-msg-smart": "^1.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "./.githooks/pre-commit"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"revert",
"chore",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern, you should use one of [feat| fix| revert|chore| docs| style| refactor| perf| test| build| ci]",
"helpMessage": ""
}
}
}