-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 KB
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
{
"name": "github-issue-due-dates-action",
"version": "2.0.1",
"description": "GitHub Action that labels and optionally comments on issues based on a YAML-frontmatter due date.",
"main": "dist/index.js",
"license": "MIT",
"author": "Alex Leventer",
"repository": {
"type": "git",
"url": "https://github.com/alexleventer/github-issue-due-dates-action.git"
},
"scripts": {
"build": "ncc build src/app.ts -o dist --source-map --license licenses.txt",
"lint": "tsc --noEmit",
"test": "jest",
"all": "npm run lint && npm test && npm run build"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.1",
"front-matter": "^4.0.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.24",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=20"
},
"overrides": {
"undici": "^6.22.0"
}
}