-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 930 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 930 Bytes
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
{
"name": "flutter-code-quality",
"version": "1.0.10",
"description": "Github Action that analyzes and formats Flutter repositories",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.3.2",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@types/adm-zip": "^0.5.7",
"@types/minimist": "^1.2.5",
"adm-zip": "^0.5.16",
"lcov-utils": "^0.5.4",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.19.30",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"scripts": {
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"build": "npx @vercel/ncc build src/main.ts -o dist",
"start": "npx tsx src/main.ts --local"
},
"overrides": {
"graceful-fs": "^4.2.11"
},
"packageManager": "yarn@4.12.0"
}