generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "checks-action",
"version": "2.0.0",
"private": true,
"description": "GitHub Action which wraps calls to GitHub Checks API",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint '**/*.js' '**/*.ts'",
"pack": "ncc build -m",
"test": "jest",
"format": "prettier --write '**/*.js' '**/*.ts'",
"all": "npm run build && npm run lint && npm run pack && npm test"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/LouisBrunner"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LouisBrunner/checks-action.git"
},
"keywords": [
"github",
"actions",
"checks"
],
"author": "Louis Brunner",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}