forked from matlab-actions/setup-matlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"name": "setup-matlab-action",
"author": "The MathWorks, Inc.",
"version": "2.6.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf dist lib",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint \"**/*.ts\" --fix",
"package": "ncc build src/index.ts -o dist/setup --minify && ncc build src/post.ts -o dist/cache-save --minify",
"test": "jest",
"all": "npm run lint && npm test && npm run package",
"ci": "npm run clean && npm ci && npm run all"
},
"files": [
"lib/"
],
"dependencies": {
"@actions/cache": "^4.0.5",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"jest": "^30.0.5",
"jest-circus": "^30.0.5",
"prettier": "3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
}
}