-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.56 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
{
"name": "simple-release-notes-action",
"version": "3.0.2",
"author": "Eric L. Goldstein",
"description": "GitHub Action that auto-publishes release notes using a very simple-to-follow set of rules",
"keywords": [
"github",
"github action",
"release notes",
"releases",
"simple"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mangs/simple-release-notes-action.git"
},
"engines": {
"node": ">=20.9.0"
},
"packageManager": "[email protected]",
"scripts": {
"delete:node_modules": "rm -rf node_modules",
"delete:package-lock": "rm -f package-lock.json",
"format:code": "prettier --write --no-editorconfig .",
"lint:javascript": "echo Linting JavaScript... && eslint --ext cjs,js,mjs --max-warnings 0 --cache --cache-location .eslintcache --cache-strategy content .",
"list:todo-comments": "rg --only-matching '(TODO|FIXME):[a-zA-Z0-9\\t .,;?]+'",
"list:eslint:disable-directives": "rg '/(/|\\*+)[ \\t]*eslint-disable[^*]*(\\*+/)?'",
"reinstall": "npm run --silent delete:node_modules && npm run --silent delete:package-lock && npm i",
"reinstall:use-lock-file": "npm run --silent delete:node_modules && npm ci",
"test": "GITHUB_REPOSITORY=mangs/simple-release-notes-action ./src/publishReleaseNotes.mjs",
"validate:formatting": "prettier --check --no-editorconfig .",
"validate:linting:eslint": "eslint-config-prettier ./src/publishReleaseNotes.mjs"
},
"devDependencies": {
"@babbel/eslint-config": "1.2.2",
"eslint": "8.57.0",
"prettier": "3.2.5"
}
}