generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.55 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.55 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
{
"name": "release-changelog-builder-action",
"version": "v6.0.0",
"private": true,
"description": "A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.",
"main": "lib/main.js",
"type": "module",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**.ts __tests__/**.ts",
"format-check": "prettier --check src/**.ts",
"format-fix": "eslint --fix src/**.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest --run --reporter=default --reporter=junit --outputFile=./junit.xml",
"test-main": "vitest --run __tests__/main.test.ts --reporter=default --reporter=junit --outputFile=./junit.xml",
"test-github": "vitest --run __tests__/*.test.ts __tests__/offline/*.test.ts --reporter=junit --outputFile=./junit.xml",
"test-gitea": "vitest --run __tests__/gitea/*.test.ts --reporter=junit --outputFile=./junit.xml",
"test-demo": "vitest --run __tests__/demo/*.test.ts --reporter=junit --outputFile=./junit.xml",
"test-offline": "vitest --run __tests__/offline/*.test.ts --reporter=junit --outputFile=./junit.xml",
"all": "npm run build && npm run format && npm run lint && npm run package && npm run test-github"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikepenz/release-changelog-builder.git"
},
"keywords": [
"actions",
"changelog",
"release-notes",
"release",
"notes",
"change",
"release-automation",
"pull-requests",
"issues",
"labels"
],
"author": "Mike Penz",
"license": "Apache 2.0",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/rest": "^22.0.1",
"gitea-js": "^1.23.0",
"https-proxy-agent": "^7.0.6",
"moment": "^2.30.1",
"semver": "^7.7.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@types/eslint-scope": "^9.1.0",
"@types/node": "^25.3.3",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"js-yaml": "^4.1.1",
"prettier": "3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"glob": "11.0.1",
"undici": "^6.23.0"
}
}