-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.47 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
45
46
47
48
49
50
{
"name": "common-utils",
"author": "The MathWorks, Inc.",
"version": "2.3.1",
"description": "",
"type": "module",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf dist lib",
"format": "prettier --write .",
"format-check": "prettier --check .",
"build": "tsc",
"prepare": "npm run build",
"package": "ncc build --minify",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"all": "npm run format-check && npm test && npm run build && npm run package",
"ci": "npm run clean && npm ci --ignore-scripts && npm run all"
},
"files": [
"lib/",
"scripts/",
"plugins/"
],
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.5.1",
"@vercel/ncc": "^0.38.3",
"jest": "^30.0.5",
"jest-circus": "^30.0.5",
"jsdom": "^26.1.0",
"prettier": "3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matlab-actions/common-utils.git"
},
"bugs": {
"url": "https://github.com/matlab-actions/common-utils/issues"
},
"homepage": "https://github.com/matlab-actions/common-utils#readme"
}