-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "run-matlab-command-action",
"author": "The MathWorks, Inc.",
"version": "3.1.0",
"description": "",
"type": "module",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf dist lib",
"format": "prettier --write .",
"format-check": "prettier --check .",
"build": "tsc",
"deps": "bash ./scripts/setupdeps.sh",
"package": "ncc build --minify",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --passWithNoTests",
"all": "npm run format-check && npm test && npm run build && npm run package",
"ci": "npm run clean && npm ci && npm run deps && npm run all"
},
"files": [
"lib/"
],
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"common-utils": "github:matlab-actions/common-utils#v2.2.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@vercel/ncc": "^0.38.3",
"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"
}
}