-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 980 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 980 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
{
"name": "@flyway-actions/migrations-checks",
"version": "1.0.0",
"description": "GitHub Action to run pre-deployment checks on Flyway migrations",
"author": "Redgate",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint -c ../../eslint.config.mjs src/ tests/ --max-warnings 0",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\""
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@actions/http-client": "4.0.1",
"@actions/io": "3.0.2",
"@flyway-actions/shared": "workspace:*"
},
"devDependencies": {
"@types/node": "25.9.1",
"@vitest/coverage-v8": "4.1.7",
"vite": "8.0.14",
"vite-plugin-checker": "0.13.0",
"vitest": "4.1.7"
}
}