UNPKG

2.54 kBJSONView Raw
1{
2 "name": "@semantic-release/commit-analyzer",
3 "description": "Customizable commit-analyzer plugin for semantic-release",
4 "version": "5.0.1",
5 "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
6 "bugs": {
7 "url": "https://github.com/semantic-release/commit-analyzer/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 "conventional-changelog-angular": "^1.4.0",
20 "conventional-commits-parser": "^2.0.0",
21 "debug": "^3.1.0",
22 "import-from": "^2.1.0",
23 "lodash": "^4.17.4"
24 },
25 "devDependencies": {
26 "ava": "^0.24.0",
27 "codecov": "^3.0.0",
28 "commitizen": "^2.9.6",
29 "conventional-changelog-atom": "^0.2.0",
30 "conventional-changelog-ember": "^0.3.0",
31 "conventional-changelog-eslint": "^0.3.0",
32 "conventional-changelog-express": "^0.3.0",
33 "conventional-changelog-jshint": "^0.3.0",
34 "cz-conventional-changelog": "^2.0.0",
35 "eslint-config-prettier": "^2.3.0",
36 "eslint-plugin-prettier": "^2.3.0",
37 "nyc": "^11.1.0",
38 "prettier": "~1.10.0",
39 "rimraf": "^2.6.1",
40 "semantic-release": "^12.2.2",
41 "sinon": "^4.0.2",
42 "xo": "^0.18.2"
43 },
44 "engines": {
45 "node": ">=4"
46 },
47 "files": [
48 "lib",
49 "index.js"
50 ],
51 "homepage": "https://github.com/semantic-release/commit-analyzer#readme",
52 "keywords": [
53 "changelog",
54 "commit-analyzer",
55 "conventional-changelog",
56 "conventional-commits",
57 "github",
58 "publish",
59 "release",
60 "semantic-release"
61 ],
62 "license": "MIT",
63 "main": "index.js",
64 "nyc": {
65 "include": [
66 "lib/**/*.js",
67 "index.js"
68 ],
69 "reporter": [
70 "json",
71 "text",
72 "html"
73 ],
74 "all": true
75 },
76 "prettier": {
77 "printWidth": 120,
78 "singleQuote": true,
79 "bracketSpacing": false,
80 "trailingComma": "es5"
81 },
82 "publishConfig": {
83 "access": "public"
84 },
85 "repository": {
86 "type": "git",
87 "url": "https://github.com/semantic-release/commit-analyzer.git"
88 },
89 "scripts": {
90 "cm": "git-cz",
91 "codecov": "codecov -f coverage/coverage-final.json",
92 "lint": "xo",
93 "pretest": "npm run lint",
94 "semantic-release": "semantic-release",
95 "test": "nyc ava -v"
96 },
97 "xo": {
98 "extends": [
99 "prettier"
100 ],
101 "plugins": [
102 "prettier"
103 ],
104 "rules": {
105 "prettier/prettier": 2
106 }
107 }
108}