-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pr-log",
"version": "6.2.0",
"type": "module",
"description": "Changelog generator based on GitHub Pull Requests",
"bin": "target/build/source/packages/command-line-interface/bin.entry-point.js",
"files": [
"target/build/source/",
"!target/build/source/**/*.test.js",
"!target/build/source/**/*.d.ts",
"!target/build/source/**/*.map"
],
"author": "Mathias Schreck <schreck.mathias@gmail.com>",
"license": "MIT",
"dependencies": {
"@octokit/rest": "22.0.1",
"@sindresorhus/is": "8.1.0",
"commander": "15.0.0",
"common-tags": "1.8.2",
"date-fns": "4.4.0",
"execa": "10.0.1",
"git-url-parse": "16.1.0",
"loglevel": "1.9.2",
"parse-github-repo-url": "1.4.1",
"semver": "7.8.5",
"true-myth": "9.4.0"
},
"devDependencies": {
"@enormora/eslint-config-base": "0.0.62",
"@enormora/eslint-config-mocha-node-assert": "0.0.17",
"@enormora/eslint-config-node": "0.0.46",
"@enormora/eslint-config-typescript": "0.0.70",
"@packtory/cli": "0.0.102",
"@types/common-tags": "1.8.4",
"@types/mocha": "10.0.10",
"@types/node": "24.13.3",
"@types/parse-github-repo-url": "1.4.2",
"@types/semver": "7.8.0",
"@types/sinon": "22.0.0",
"c8": "12.0.0",
"eslint": "10.9.1",
"fishery": "2.4.0",
"mocha": "12.0.0",
"rust-just": "1.57.0",
"sinon": "22.1.0",
"typescript": "6.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/enormora/pr-log.git"
},
"pr-log": {
"ignoredLabels": [
"release"
]
},
"keywords": [
"pr-log",
"changelog",
"changelog.md",
"github",
"history",
"history.md"
],
"contributors": [
{
"name": "Alexander Schmidt",
"email": "alexanderschmidt1@gmail.com"
},
{
"name": "Christian Rackerseder",
"email": "git@echooff.de"
}
],
"engines": {
"node": "^22.0.0 || ^24.0.0 || ^26.0.0"
},
"overrides": {
"c8": {
"yargs": "18.1.0"
}
}
}