-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.67 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
{
"name": "relno-action",
"version": "3.0.0",
"private": true,
"description": "A fully configurable release note generation framework. Allow you to automatically generate a beautiful release note from commit messages and pull requests.",
"main": "dist/index.js",
"author": "ppodds",
"license": "MIT",
"module": "CommonJS",
"scripts": {
"build": "tsc",
"format": "prettier --write {src,__tests__}/**/*.ts",
"format-check": "prettier --check {src,__tests__}/**/*.ts",
"lint": "eslint --fix src/**/*.ts",
"test": "echo 'No tests yet.'",
"package": "ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"node",
"release",
"release note"
],
"packageManager": "pnpm@8.11.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"relno": "^1.0.0",
"semver": "^7.5.4",
"simple-git": "^3.21.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.10.4",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.55.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.9.6",
"relno-plugin-contributor": "1.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
],
"__tests__/**/*.ts": [
"prettier --write"
]
}
}