-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "github-action-todo-commenter",
"version": "0.0.1",
"main": "lib/index.js",
"repository": "https://github.com/gkampitakis/github-action-todo-commenter",
"author": "gkampitakis",
"license": "MIT",
"private": false,
"description": "Parses pull request files based on tags and creates a comment with a task list",
"scripts": {
"prepare": "husky install",
"tsc": "tsc",
"bundle": "tsc && ncc build ./dist/index.js -m -o ./lib",
"test": "jest",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@spotify/eslint-config": "^14.1.6",
"@types/jest": "^29.5.0",
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"semantic-release": "^21.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"jest": {
"globals": {
"transform": {
"^.+\\.ts$": ["ts-jest"]
}
},
"verbose": true,
"collectCoverage": true,
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/index.ts",
"!src/**/executor.ts",
"!src/**/*.d.ts"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}