-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.43 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.43 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": "setup-matlab-action",
"author": "The MathWorks, Inc.",
"version": "3.0.1",
"description": "",
"type": "module",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf dist lib",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint \"**/*.ts\" --fix",
"build": "tsc",
"package": "ncc build src/index.ts -o dist/setup --minify && ncc build src/post.ts -o dist/cache-save --minify",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"all": "npm run format-check && npm run lint && npm test && npm run build && npm run package",
"ci": "npm run clean && npm ci && npm run all"
},
"files": [
"lib/"
],
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0"
},
"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",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}