-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "standard-release-notes",
"version": "1.5.0",
"description": "A GitHub action to extract release notes for a version from the changelog generated by standard-version.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "npm run test && ncc build src/index.js --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yashanand1910/standard-release-notes.git"
},
"keywords": [
"github",
"action"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/yashanand1910/standard-release-notes/issues"
},
"homepage": "https://github.com/yashanand1910/standard-release-notes#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@jest/globals": "^29.3.1",
"@vercel/ncc": "^0.34.0",
"babel-jest": "^29.3.1",
"husky": "^8.0.2",
"jest": "^29.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist/",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}