UNPKG

2.04 kBJSONView Raw
1{
2 "name": "@semantic-release/changelog",
3 "description": "semantic-release plugin to create or update a changelog file",
4 "version": "3.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": "^7.0.0",
22 "lodash": "^4.17.4"
23 },
24 "devDependencies": {
25 "ava": "^0.25.0",
26 "clear-module": "^3.0.0",
27 "codecov": "^3.0.0",
28 "commitizen": "^3.0.0",
29 "cz-conventional-changelog": "^2.0.0",
30 "nyc": "^12.0.1",
31 "semantic-release": "^15.0.0",
32 "sinon": "^6.0.0",
33 "tempy": "^0.2.1",
34 "xo": "^0.23.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.8.0 <16.0.0"
67 },
68 "prettier": {
69 "printWidth": 120,
70 "trailingComma": "es5"
71 },
72 "publishConfig": {
73 "access": "public",
74 "tag": "next"
75 },
76 "repository": {
77 "type": "git",
78 "url": "https://github.com/semantic-release/changelog.git"
79 },
80 "scripts": {
81 "cm": "git-cz",
82 "codecov": "codecov -f coverage/coverage-final.json",
83 "lint": "xo",
84 "pretest": "npm run lint",
85 "semantic-release": "semantic-release",
86 "test": "nyc ava -v"
87 },
88 "xo": {
89 "prettier": true,
90 "space": true
91 }
92}