forked from matlab-actions/run-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "run-matlab-tests-action",
"author": "The MathWorks, Inc.",
"version": "2.1.1",
"description": "",
"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": "jest",
"all": "npm test && npm run build && npm run package",
"ci": "npm run clean && npm run deps && npm ci && npm run all"
},
"files": [
"lib/"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"run-matlab-command-action": "github:matlab-actions/run-command#v2.1.0"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^20.11.16",
"@vercel/ncc": "^0.38.0",
"jest": "^29.1.2",
"jest-circus": "^29.1.2",
"prettier": "2.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.3.4"
}
}