UNPKG

2.32 kBJSONView Raw
1{
2 "name": "@semantic-release/git",
3 "description": "semantic-release plugin to commit release assets to the project's git repository",
4 "version": "7.0.6",
5 "author": "Pierre Vanduynslager (https://github.com/pvdlg)",
6 "bugs": {
7 "url": "https://github.com/semantic-release/git/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 "debug": "^4.0.0",
22 "dir-glob": "^2.0.0",
23 "execa": "^1.0.0",
24 "fs-extra": "^7.0.0",
25 "globby": "^8.0.1",
26 "lodash": "^4.17.4",
27 "micromatch": "^3.1.4",
28 "p-reduce": "^1.0.0"
29 },
30 "devDependencies": {
31 "ava": "^0.25.0",
32 "clear-module": "^3.0.0",
33 "codecov": "^3.0.0",
34 "commitizen": "^3.0.0",
35 "cz-conventional-changelog": "^2.0.0",
36 "file-url": "^2.0.2",
37 "get-stream": "^4.0.0",
38 "git-log-parser": "^1.2.0",
39 "nyc": "^13.1.0",
40 "semantic-release": "^15.0.0",
41 "sinon": "^7.1.1",
42 "tempy": "^0.2.1",
43 "xo": "^0.23.0"
44 },
45 "engines": {
46 "node": ">=8.3"
47 },
48 "files": [
49 "lib",
50 "index.js"
51 ],
52 "homepage": "https://github.com/semantic-release/git#readme",
53 "keywords": [
54 "changelog",
55 "commit",
56 "conventional-changelog",
57 "conventional-commits",
58 "git",
59 "release",
60 "semantic-release",
61 "version"
62 ],
63 "license": "MIT",
64 "main": "index.js",
65 "nyc": {
66 "include": [
67 "lib/**/*.js",
68 "index.js"
69 ],
70 "reporter": [
71 "json",
72 "text",
73 "html"
74 ],
75 "all": true
76 },
77 "peerDependencies": {
78 "semantic-release": ">=15.4.0 <16.0.0"
79 },
80 "prettier": {
81 "printWidth": 120,
82 "trailingComma": "es5"
83 },
84 "publishConfig": {
85 "access": "public",
86 "tag": "next"
87 },
88 "repository": {
89 "type": "git",
90 "url": "https://github.com/semantic-release/git.git"
91 },
92 "scripts": {
93 "cm": "git-cz",
94 "codecov": "codecov -f coverage/coverage-final.json",
95 "lint": "xo",
96 "pretest": "npm run lint",
97 "semantic-release": "semantic-release",
98 "test": "nyc ava -v"
99 },
100 "xo": {
101 "prettier": true,
102 "space": true
103 }
104}