-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "upload-captain-artifact",
"version": "1.0.4",
"private": true,
"description": "This action uploads artifacts, including test results, into Captain.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --reporters=default --reporters=jest-junit",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/rwx-research/upload-captain-artifact.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "rwx",
"license": "MIT",
"engines": {
"node": ">= 20"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "5.1.1",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@babel/preset-typescript": "7.24.7",
"@types/jest": "29.5.12",
"@types/node": "22.8.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vercel/ncc": "0.38.1",
"babel-jest": "29.7.0",
"eslint": "8.57.0",
"eslint-plugin-github": "5.0.1",
"eslint-plugin-jest": "28.7.0",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"install": "^0.13.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"js-yaml": "4.1.0",
"prettier": "3.3.3",
"typescript": "5.5.4"
}
}