-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.6 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
{
"name": "is-release-commit-action",
"version": "1.4.0",
"main": "dist/action.js",
"type": "commonjs",
"scripts": {
"prepare": "husky",
"build": "rimraf dist && esbuild ./src/action.ts --bundle --platform=node --outdir=./dist --format=cjs --tree-shaking=true --minify",
"test:manual": "rimraf dist-test && esbuild ./test/manual-test.ts --bundle --platform=node --outdir=./dist-test --format=cjs --tree-shaking=true && node dist-test/manual-test.js",
"lint": "tsc && eslint src/**",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --watchAll=false",
"update-git-tags": "git tag -l | xargs git tag -d && git fetch --tags"
},
"keywords": [
"release",
"github action",
"check"
],
"author": "Niver Engineering GmbH",
"license": "ISC",
"description": "A GitHub action to check whether the commit which is currently built is a release commit.",
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.19.0",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/node": "22.12.0",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"babel-jest": "29.7.0",
"esbuild": "0.24.2",
"eslint": "9.19.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0"
}
}