forked from ellistarn/conventional-commits
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "conventional-commits",
"version": "0.0.6",
"description": "Github action that enforces conventional commits",
"main": "index.js",
"type": "commonjs",
"scripts": {
"pre:test": "tsc",
"test": "jest",
"test-build": "npm test && node index.js",
"start": "tsc --watch & jest --watch",
"preversion": "npm run test-build && git add -f index.js; git commit -m 'Update build' 2>&1 > /dev/null || :",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codehabits/conventional-commits.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codehabits/conventional-commits/issues"
},
"homepage": "https://github.com/codehabits/conventional-commits#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.1",
"jest": "^29.5.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@conventional-commits/parser": "^0.4.1",
"@octokit/webhooks-definitions": "^3.67.3"
}
}