-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.06 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.06 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
{
"$schema": "https://json.schemastore.org/package",
"name": "matrix-versions",
"version": "1.0.0",
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.15.0",
"type": "commonjs",
"scripts": {
"update-config-schema": "tsx config.schema-update.ts",
"generate-config": "npm run update-config-schema && json2ts config.schema.json > src/internal/config.ts",
"generate": "npm run generate-config",
"lint": "eslint --fix src/**/*",
"test": "node ./node_modules/jest/bin/jest.js --passWithNoTests --runInBand",
"tsconfig-generate-app": "node tsconfig-generate-app",
"compile": "npm run generate && npm run lint && rimraf --glob build && node tsconfig-generate-app && tsc -project tsconfig.app.json --rootDir . --outDir build",
"dist": "npm run compile && rimraf --glob dist/**/* && ncc build build/src/main.js --out dist && node process-dist",
"build": "node check-dependency-engines && npm run dist && npm run test"
},
"dependencies": {
"@actions/core": "2.0.3",
"@actions/glob": "0.5.1",
"ajv": "8.20.0",
"deepmerge": "4.3.1",
"renovate": "39.264.1",
"yaml": "2.9.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
"@eslint/js": "10.0.1",
"@tsconfig/node20": "20.1.9",
"@types/jest": "30.0.0",
"@types/node": "20.19.41",
"@types/semver": "7.7.1",
"@vercel/ncc": "0.38.4",
"dedent": "1.7.2",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.4.2",
"jest-circus": "30.4.2",
"jest-extended": "7.0.0",
"json-schema-to-typescript": "15.0.4",
"rimraf": "6.1.3",
"semver": "7.8.0",
"ts-jest": "29.4.10",
"tsx": "4.22.3",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4"
},
"resolutions": {
"@typescript-eslint/utils": "8.59.4",
"re2": "npm:@favware/skip-dependency@1.2.2"
}
}