forked from semcelik/commit-author-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 951 Bytes
/
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": "@semcelik/commit-author-action",
"version": "1.0.0",
"main": "src/index.ts",
"keywords": [
"action",
"github-action"
],
"author": "semcelik",
"license": "ISC",
"description": "An action for commit's email pattern",
"scripts": {
"build": "ncc build src/index.ts --minify --out dist",
"start": "yarn build --watch",
"test": "jest",
"lint": "eslint --max-warnings=0"
},
"devDependencies": {
"@types/jest": "^26.0.18",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"@vercel/ncc": "^0.25.1",
"eslint": "7.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
}
}