generated from austenstone/action-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "job-summary",
"version": "2.1.0",
"description": "Get a GitHub Actions job summary and/or convert it to another format",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license LICENSE",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"actions",
"node",
"github",
"typescript"
],
"author": "Austen Stone",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/austenstone/job-summary.git"
},
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.1.7",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ncc": "^0.3.6",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
}
}