-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.13 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
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
{
"name": "setup-flyway",
"version": "1.0.1",
"description": "Setup Redgate Flyway for Actions",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"build": "yarn node ./esbuild.mjs",
"format": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --write \"**/*.{mts,ts,yml,yaml}\"",
"format:check": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --check \"**/*.{mts,ts,yml,yaml}\"",
"lint:check": "yarn eslint",
"lint": "yarn eslint --fix",
"prerelease": "yarn run build",
"release": "git add -f dist/index.mjs dist/cleanup.mjs",
"test": "yarn jest --config jest.config.ts"
},
"repository": "git+https://github.com/kenmuse/setup-flyway.git",
"keywords": [
"actions",
"setup"
],
"author": "Ken Muse",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenmuse/setup-flyway/issues"
},
"homepage": "https://github.com/kenmuse/setup-flyway#readme",
"sideEffects": false,
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@actions/http-client": "^2.2.2",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"fast-xml-parser": "^4.4.1",
"semver": "^7.6.3",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": ">=8.2.0",
"@typescript-eslint/parser": ">=8.2.0",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-mock": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-eslint": ">=8.2.0"
},
"packageManager": "[email protected]"
}