-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.17 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
40
41
42
43
44
{
"name": "issue-checker",
"version": "0.0.1",
"private": false,
"description": "A GitHub Action that labels and comments on issues that are missing required information",
"main": "lib/main.js",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"build": "tsc && ncc build -m",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenzeck/issue-checker.git"
},
"keywords": [
"actions",
"node",
"issues"
],
"author": "Steven Zeck <steven.zeck@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/parser": "^6.2.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.46.0",
"eslint-plugin-github": "^4.9.2",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"js-yaml": "^4.1.0",
"prettier": "3.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}