UNPKG

2.57 kBJSONView Raw
1{
2 "name": "@semantic-release/commit-analyzer",
3 "description": "semantic-release plugin to analyze commits with conventional-changelog",
4 "version": "11.0.0",
5 "type": "module",
6 "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
7 "ava": {
8 "files": [
9 "test/**/*.test.js"
10 ]
11 },
12 "bugs": {
13 "url": "https://github.com/semantic-release/commit-analyzer/issues"
14 },
15 "contributors": [
16 "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
17 "Gregor Martynus (https://twitter.com/gr2m)"
18 ],
19 "dependencies": {
20 "conventional-changelog-angular": "^7.0.0",
21 "conventional-commits-filter": "^4.0.0",
22 "conventional-commits-parser": "^5.0.0",
23 "debug": "^4.0.0",
24 "import-from": "^4.0.0",
25 "lodash-es": "^4.17.21",
26 "micromatch": "^4.0.2"
27 },
28 "devDependencies": {
29 "ava": "5.3.1",
30 "c8": "8.0.1",
31 "conventional-changelog-atom": "4.0.0",
32 "conventional-changelog-conventionalcommits": "6.1.0",
33 "conventional-changelog-ember": "4.0.0",
34 "conventional-changelog-eslint": "5.0.0",
35 "conventional-changelog-express": "4.0.0",
36 "conventional-changelog-jshint": "4.0.0",
37 "prettier": "3.0.3",
38 "semantic-release": "22.0.0",
39 "sinon": "16.0.0"
40 },
41 "engines": {
42 "node": "^18.17 || >=20.6.1"
43 },
44 "files": [
45 "lib",
46 "index.js"
47 ],
48 "homepage": "https://github.com/semantic-release/commit-analyzer#readme",
49 "keywords": [
50 "changelog",
51 "commit-analyzer",
52 "conventional-changelog",
53 "conventional-commits",
54 "github",
55 "publish",
56 "release",
57 "semantic-release"
58 ],
59 "license": "MIT",
60 "main": "index.js",
61 "c8": {
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": ">=20.1.0"
75 },
76 "prettier": {
77 "printWidth": 120,
78 "trailingComma": "es5"
79 },
80 "publishConfig": {
81 "access": "public",
82 "provenance": true
83 },
84 "repository": {
85 "type": "git",
86 "url": "https://github.com/semantic-release/commit-analyzer.git"
87 },
88 "scripts": {
89 "lint": "prettier --check \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
90 "lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
91 "pretest": "npm run lint",
92 "semantic-release": "semantic-release",
93 "test": "c8 ava -v",
94 "test:ci": "c8 ava -v"
95 },
96 "renovate": {
97 "extends": [
98 "github>semantic-release/.github"
99 ]
100 }
101}