-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.42 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "openmodelica-library-testing",
"description": "Setup OpenModelicaLibraryTesting scripts and runs them on a Modelica package and publishes results.",
"version": "0.2.1",
"author": "Andreas Heuermann",
"type": "module",
"license": "OSMC-PL-1-8",
"private": true,
"homepage": "https://github.com/OpenModelica/openmodelica-library-testing-action",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenModelica/openmodelica-library-testing-action.git"
},
"bugs": {
"url": "https://github.com/OpenModelica/openmodelica-library-testing-action/issues"
},
"keywords": [
"continuous-integration",
"actions",
"modelica-library",
"openmodelica"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "npx eslint . -c ./.github/linters/eslint.config.mjs",
"package": "ncc build src/index.ts --license licenses.txt && npm run copy-files",
"package:watch": "npm run package -- --watch",
"copy-files": "copyfiles scripts/dygraph-combined.js dist/",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"all": "npm run format:write && npm run lint && npm run package && npm run test && npm run coverage"
},
"dependencies": {
"@actions/artifact": "^5.0.3",
"@actions/core": "^3.0.0",
"node-html-parser": "^7.0.2",
"simple-git": "^3.33.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.1.0",
"@types/turndown": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vercel/ncc": "^0.38.4",
"copyfiles": "^2.4.1",
"eslint": "^9.39.2",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"make-coverage-badge": "^1.2.0",
"npm-check-updates": "^19.3.2",
"prettier-eslint": "^16.4.2",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}