-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@vodyani/coverage-report",
"license": "MIT",
"version": "1.0.6",
"author": "ChoGathK",
"description": "📚 During jest testing, it was used to generate mochawesome compliant json formatted reports.",
"homepage": "https://github.com/vodyani/coverage-report#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vodyani/coverage-report.git"
},
"keywords": [
"vodyani",
"javascript",
"npm-package",
"jest",
"mocha",
"report",
"coverage",
"coverage-report"
],
"bugs": {
"url": "https://github.com/vodyani/coverage-report/issues"
},
"files": [
"package.json",
"README.MD",
"LICENSE",
"index.js"
],
"main": "index.js",
"scripts": {
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"install:all": "npm i && npx husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"husky": "7.0.4"
}
}