-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "workflow-generator",
"version": "1.0.0",
"description": "GitHub Actions Workflow Generator for MATLAB website",
"type": "module",
"scripts": {
"precommit": "npm run format && npm run lint && npm run test",
"format": "prettier --write .",
"lint": "eslint public/scripts/ --ext .js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"transform": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/matlab-actions/workflow-generator.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/matlab-actions/workflow-generator/issues"
},
"homepage": "https://matlab-actions.github.io/workflow-generator",
"devDependencies": {
"@eslint/css": "^0.9.0",
"@eslint/js": "^9.29.0",
"@eslint/markdown": "^6.6.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"jest": "^30.0.3",
"jest-environment-jsdom": "^30.0.2",
"js-yaml": "^4.1.0",
"prettier": "^3.6.1"
}
}