-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
40 lines (40 loc) · 1.25 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": "laminas-ci-matrix-action",
"description": "Create a CI matrix for use in a GitHub Action",
"scripts": {
"build": "tsc --build && webpack --mode=production",
"lint": "eslint src/ --ext .ts",
"lint-fix": "eslint src/ --ext .ts --fix",
"test": "jest --logHeapUsage"
},
"engines": {
"npm": "^10.0.0",
"node": "^21.7.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@cfworker/json-schema": "^2.0.0",
"@types/semver": "^7.3.13",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^20.0.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"dotenv": "^16.3.1",
"eslint": "^8.26.0",
"eslint-config-incredible": "^2.4.2",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.2.2",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~5.7.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0"
}
}