UNPKG

2.02 kBJSONView Raw
1{
2 "name": "@semantic-release/changelog",
3 "description": "Set of semantic-release plugins for creating or updating a changelog file",
4 "version": "2.0.1",
5 "author": "Pierre Vanduynslager (https://github.com/pvdlg)",
6 "bugs": {
7 "url": "https://github.com/semantic-release/changelog/issues"
8 },
9 "config": {
10 "commitizen": {
11 "path": "cz-conventional-changelog"
12 }
13 },
14 "contributors": [
15 "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
16 "Gregor Martynus (https://twitter.com/gr2m)"
17 ],
18 "dependencies": {
19 "@semantic-release/error": "^2.1.0",
20 "aggregate-error": "^1.0.0",
21 "fs-extra": "^5.0.0",
22 "lodash": "^4.17.4"
23 },
24 "devDependencies": {
25 "ava": "^0.25.0",
26 "clear-module": "^2.1.0",
27 "codecov": "^3.0.0",
28 "commitizen": "^2.9.6",
29 "cz-conventional-changelog": "^2.0.0",
30 "nyc": "^11.1.0",
31 "semantic-release": "^12.2.2",
32 "sinon": "^4.1.2",
33 "tempy": "^0.2.1",
34 "xo": "^0.20.0"
35 },
36 "engines": {
37 "node": ">=8.3"
38 },
39 "files": [
40 "lib",
41 "index.js"
42 ],
43 "homepage": "https://github.com/semantic-release/changelog#readme",
44 "keywords": [
45 "changelog",
46 "conventional-changelog",
47 "release",
48 "semantic-release",
49 "version"
50 ],
51 "license": "MIT",
52 "main": "index.js",
53 "nyc": {
54 "include": [
55 "lib/**/*.js",
56 "index.js"
57 ],
58 "reporter": [
59 "json",
60 "text",
61 "html"
62 ],
63 "all": true
64 },
65 "peerDependencies": {
66 "semantic-release": ">=15.0.0 <16.0.0"
67 },
68 "prettier": {
69 "printWidth": 120
70 },
71 "publishConfig": {
72 "access": "public",
73 "tag": "next"
74 },
75 "repository": {
76 "type": "git",
77 "url": "https://github.com/semantic-release/changelog.git"
78 },
79 "scripts": {
80 "cm": "git-cz",
81 "codecov": "codecov -f coverage/coverage-final.json",
82 "lint": "xo",
83 "pretest": "npm run lint",
84 "semantic-release": "semantic-release",
85 "test": "nyc ava -v"
86 },
87 "xo": {
88 "prettier": true,
89 "space": true
90 }
91}