forked from semantic-release/changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 1.93 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
{
"name": "@semantic-release/changelog",
"description": "semantic-release plugin to create or update a changelog file",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/semantic-release/changelog/issues"
},
"contributors": [
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@semantic-release/error": "^2.1.0",
"aggregate-error": "^3.0.0",
"fs-extra": "^9.0.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"ava": "^3.1.0",
"clear-module": "^4.0.0",
"codecov": "^3.0.0",
"nyc": "^15.0.0",
"semantic-release": "^17.0.0",
"sinon": "^9.0.0",
"tempy": "^0.5.0",
"xo": "^0.28.0"
},
"engines": {
"node": ">=10.18"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/changelog#readme",
"keywords": [
"changelog",
"conventional-changelog",
"release",
"semantic-release",
"version"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=15.8.0 <18.0.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/changelog.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,
"space": true,
"rules": {
"unicorn/string-content": "off"
}
}
}