-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "gh-semver-match",
"version": "1.0.0",
"description": "GitHub Action to match semantic versions from repositories",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json && ncc build dist/index.js -o dist",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts"
},
"keywords": [
"github",
"action",
"semver"
],
"author": "cpunion",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"semver": "^7.6.3",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
}
}