-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "demo-auto-security-release",
"version": "1.0.12",
"description": "Demo on how to use Github Actions to automatically release fixes for dependency vulnerabilities",
"private": true,
"license": "LICENSE",
"bugs": "https://github.com/Th3S4mur41/demo-auto-security-release/issues",
"homepage": "https://github.com/Th3S4mur41/demo-auto-security-releases#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Th3S4mur41/demo-auto-security-release.git"
},
"keywords": [
"blog",
"demo",
"semantic-release",
"dependabot",
"github-actions",
"security",
"vulnerabilities",
"dependencies"
],
"scripts": {
"build": "echo build your package",
"git:pre-commit": "npx pretty-quick --staged",
"lint": "npm run lint:style",
"lint:fix": "npm run lint:style:fix",
"lint:style": "prettier --check --ignore-unknown .",
"lint:style:fix": "prettier --write --ignore-unknown .",
"prepare": "husky install",
"release": "npx semantic-release",
"test": "echo run the unit tests"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"semantic-release": "^24.2.0"
}
}