-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.23 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
{
"name": "setup-matlab-action",
"author": "The MathWorks, Inc.",
"version": "2.3.0",
"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": "^3.2.2",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^1.7.1"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.50.0",
"jest": "^29.1.2",
"jest-circus": "^29.1.2",
"prettier": "2.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.3.4"
}
}