generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.05 KB
/
package.json
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
{
"name": "compare-commits-action",
"version": "5.0.26",
"private": true,
"description": "Compare the differences between two commits",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"package": "ncc build --no-source-map-register --license licenses.txt --target es2019",
"all": "npm run build && npm run format-check && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpcloud/compare-commits-action.git"
},
"keywords": [
"actions",
"node",
"setup",
"git",
"github",
"commits",
"octokit"
],
"author": "Phillip Cloud <417981+cpcloud@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@octokit/rest": "20.1.1",
"markdown-table": "3.0.4",
"tunnel": "0.0.6"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"@types/eslint": "9.6.1",
"@types/node": "22.10.10",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vercel/ncc": "0.38.3",
"eslint": "8.57.1",
"eslint-plugin-github": "5.1.5",
"js-yaml": "4.1.0",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"typescript": "4.3.5 - 5.7"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/github",
{
"successComment": false
}
],
[
"@semantic-release/git",
{
"assets": [
"dist/*",
"package.json",
"package-lock.json",
"CHANGELOG.md"
]
}
]
]
}
}