-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (32 loc) · 1.05 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
{
"name": "semantic-release-pr-title-check",
"version": "1.4.1",
"description": "Checks for [Angular commit message format](https://github.com/angular/angular/blob/main/CONTRIBUTING.md#-commit-message-format) in the Pull Request Title.",
"main": "build/main.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json && ncc build src/main.ts --license licenses.txt",
"dev": "ts-node-dev --respawn --ignore-watch node_modules --no-notify src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luabida/semantic-release-pr-title-check.git"
},
"author": "Luã Bida Vacaro",
"license": "MIT",
"bugs": {
"url": "https://github.com/luabida/semantic-release-pr-title-check/issues"
},
"homepage": "https://github.com/luabida/semantic-release-pr-title-check#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@types/node": "^18.11.11",
"typescript": "^4.9.3"
}
}