-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.46 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.46 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "settlemint-action",
"description": "GitHub Action for executing SettleMint CLI commands in workflows",
"version": "0.6.1",
"author": "SettleMint",
"private": true,
"homepage": "https://github.com/settlemint/settlemint-action",
"repository": {
"type": "git",
"url": "git+https://github.com/settlemint/settlemint-action.git"
},
"bugs": {
"url": "https://github.com/settlemint/settlemint-action/issues"
},
"keywords": [
"actions",
"github-actions",
"settlemint",
"blockchain",
"cli",
"automation"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=21"
},
"scripts": {
"bundle": "npm run format && npm run package",
"ci-test": "npx jest",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format": "biome format --write .",
"lint": "biome lint --write --unsafe .",
"local-action": "npx local-action . src/main.ts .env",
"package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "npx jest",
"all": "npm run format && npm run lint && npm run test && npm run coverage && npm run package"
},
"license": "MIT",
"jest": {
"preset": "ts-jest",
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"@actions/cache": "^4.0.3",
"@actions/core": "^3.0.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.7.2"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@github/local-action": "^5.0.0",
"@jest/globals": "^30.0.0",
"@settlemint/sdk-cli": "^2.3.6",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.30",
"@types/semver": "^7.7.0",
"@vercel/ncc": "^0.38.3",
"jest": "^30.0.0",
"make-coverage-badge": "^1.2.0",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"ultracite": "^5.0.29"
},
"overrides": {
"undici@<=6.21.2": "6.21.2",
"brace-expansion@<=1.1.12": "1.1.12",
"form-data@<=2.5.4": "2.5.4"
}
}