Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 29 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@
"bugs": {
"url": "https://github.com/settlemint/settlemint-action/issues"
},
"keywords": ["actions", "github-actions", "settlemint", "blockchain", "cli", "automation"],
"keywords": [
"actions",
"github-actions",
"settlemint",
"blockchain",
"cli",
"automation"
],
"exports": {
".": "./dist/index.js"
},
Expand All @@ -37,15 +44,29 @@
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": ["js", "ts"],
"testMatch": ["**/*.test.ts"],
"testPathIgnorePatterns": ["/node_modules/", "/dist/"],
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": ["json-summary", "text", "lcov"],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": ["./src/**"]
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"@actions/cache": "^4.0.3",
Expand All @@ -70,6 +91,7 @@
"ultracite": "^4.2.8"
},
"overrides": {
"undici@<=6.21.2": "6.21.2"
"undici@<=6.21.2": "6.21.2",
"brace-expansion@<=1.1.12": "1.1.12"
}
}
Loading