UNPKG

2.24 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": "10.0.1",
5 "author": "Pierre Vanduynslager (https://github.com/pvdlg)",
6 "ava": {
7 "files": [
8 "test/**/*.test.js"
9 ]
10 },
11 "bugs": {
12 "url": "https://github.com/semantic-release/git/issues"
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": "^3.0.0",
20 "aggregate-error": "^3.0.0",
21 "debug": "^4.0.0",
22 "dir-glob": "^3.0.0",
23 "execa": "^5.0.0",
24 "lodash": "^4.17.4",
25 "micromatch": "^4.0.0",
26 "p-reduce": "^2.0.0"
27 },
28 "devDependencies": {
29 "ava": "3.15.0",
30 "clear-module": "4.1.1",
31 "file-url": "3.0.0",
32 "fs-extra": "10.0.0",
33 "get-stream": "6.0.1",
34 "git-log-parser": "1.2.0",
35 "nyc": "15.1.0",
36 "semantic-release": "18.0.0",
37 "sinon": "11.1.2",
38 "tempy": "1.0.1",
39 "xo": "0.28.3"
40 },
41 "engines": {
42 "node": ">=14.17"
43 },
44 "files": [
45 "lib",
46 "index.js"
47 ],
48 "homepage": "https://github.com/semantic-release/git#readme",
49 "keywords": [
50 "changelog",
51 "commit",
52 "conventional-changelog",
53 "conventional-commits",
54 "git",
55 "release",
56 "semantic-release",
57 "version"
58 ],
59 "license": "MIT",
60 "main": "index.js",
61 "nyc": {
62 "include": [
63 "lib/**/*.js",
64 "index.js"
65 ],
66 "reporter": [
67 "json",
68 "text",
69 "html"
70 ],
71 "all": true
72 },
73 "peerDependencies": {
74 "semantic-release": ">=18.0.0"
75 },
76 "prettier": {
77 "printWidth": 120,
78 "trailingComma": "es5"
79 },
80 "publishConfig": {
81 "access": "public"
82 },
83 "repository": {
84 "type": "git",
85 "url": "https://github.com/semantic-release/git.git"
86 },
87 "scripts": {
88 "lint": "xo",
89 "pretest": "npm run lint",
90 "semantic-release": "semantic-release",
91 "test": "nyc ava -v",
92 "test:ci": "nyc ava -v"
93 },
94 "xo": {
95 "prettier": true,
96 "space": true,
97 "rules": {
98 "unicorn/string-content": "off"
99 }
100 },
101 "renovate": {
102 "extends": [
103 "github>semantic-release/.github"
104 ]
105 }
106}