forked from mristin/opinionated-commit-message
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@mristin/opinionated-commit-message",
"version": "3.1.0",
"description": "GitHub Action to check commit messages according to an opinionated style",
"keywords": [
"github",
"actions",
"commit",
"message",
"pull",
"request",
"push"
],
"homepage": "https://github.com/mristin/opinionated-commit-message",
"bugs": {
"url": "https://github.com/mristin/opinionated-commit-message/issues"
},
"license": "MIT",
"author": "Marko Ristin (marko.ristin@gmail.com)",
"files": [
"action.yml",
"dist",
"lib"
],
"main": "src/main.ts",
"repository": {
"type": "git",
"url": "https://github.com/mristin/opinionated-commit-message.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts --fix",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks-types": "^7.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/parser": "^6.9.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.52.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}