-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
107 lines (107 loc) · 2.22 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "conventional-changelog-metahub",
"description": "conventional-changelog preset",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager",
"ava": {
"files": [
"test/**/*.test.js"
],
"helpers": [
"test/helpers/**/*"
]
},
"bugs": {
"url": "https://github.com/pvdlg/conventional-changelog-metahub/issues"
},
"dependencies": {
"conventional-changelog-angular": "^5.0.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"ava": "^2.4.0",
"codecov": "^3.0.0",
"conventional-changelog": "^3.0.1",
"conventional-commits-parser": "^3.0.0",
"emoji-regex": "^8.0.0",
"execa": "^4.0.0",
"fs-extra": "^9.0.0",
"get-stream": "^5.1.0",
"nyc": "^15.0.0",
"p-each-series": "^2.1.0",
"proxyquire": "^2.0.0",
"semantic-release": "^17.0.0",
"stringz": "^2.0.0",
"tempy": "^0.5.0",
"xo": "^0.27.0"
},
"engines": {
"node": ">=10.13"
},
"files": [
"lib/*.js",
"index.js",
"release-rules.js",
"types.js",
"aliases.js"
],
"homepage": "https://github.com/pvdlg/conventional-changelog-metahub#readme",
"keywords": [
"changelog",
"conventional-changelog",
"conventional-commits",
"publish",
"release",
"semantic-release"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/*.js",
"index.js",
"release-rules.js",
"types.js",
"aliases.js"
],
"reporter": [
"html",
"json",
"text"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"release": {
"analyzeCommits": {
"config": "./index.js",
"releaseRules": "./release-rules.js"
},
"generateNotes": {
"config": "./index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/pvdlg/conventional-changelog-metahub.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true,
"rules": {
"prefer-named-capture-group": "off"
}
}
}