-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.62 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.62 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "github-changelog",
"version": "3.1.0",
"description": "Generate a changelog from GitHub pull requests",
"keywords": [
"changelog",
"github"
],
"homepage": "https://github.com/release-plan/github-changelog#readme",
"bugs": {
"url": "https://github.com/release-plan/github-changelog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/release-plan/github-changelog.git"
},
"license": "MIT",
"author": "Bo Borgerson <gigabo@gmail.com>",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"bin": {
"github-changelog": "bin/cli.js"
},
"scripts": {
"build": "pnpm clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"format": "prettier . --write",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\" --prefixColors auto && npm run format",
"lint:format": "prettier . --check",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"prepare": "pnpm build",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "vitest",
"test-ci": "pnpm build && pnpm test",
"watch": "pnpm build --watch"
},
"files": [
"lib",
"bin"
],
"dependencies": {
"@manypkg/get-packages": "^2.2.0",
"chalk": "^4.0.0",
"cli-highlight": "^2.1.11",
"execa": "^9.6.1",
"hosted-git-info": "^4.0.0",
"make-fetch-happen": "^15.0.5",
"p-map": "^3.0.0",
"progress": "^2.0.0",
"yargs": "^17.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/hosted-git-info": "^3.0.5",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "22.10.10",
"@types/progress": "^2.0.7",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"concurrently": "^9.2.1",
"eslint": "10.3.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "10.1.0",
"globals": "^17.6.0",
"prettier": "3.8.3",
"release-plan": "^0.18.0",
"rimraf": "3.0.2",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.2",
"vitest": "^3.0.4"
},
"packageManager": "pnpm@11.0.8",
"engines": {
"node": "22.* || 24.* || >= 26"
},
"changelog": {
"repo": "release-plan/github-changelog",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
},
"cacheDir": ".changelog"
}
}