-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.58 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
{
"name": "mabl-github-deployments-action",
"version": "1.16.0",
"description": "mabl github action for GitHub pipelines integration",
"type": "module",
"main": "lib/src/entrypoint.js",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --config jest.config.cjs",
"build": "tsc",
"release": "pnpm install --frozen-lockfile && pnpm run build && pnpm prune --prod && git add -f node_modules/* && git add -f lib/*",
"fix:prettier": "prettier --write 'src/**/*.ts'",
"fix:eslint": "eslint 'src/**/*.ts' --fix",
"fix": "pnpm run fix:eslint && pnpm run fix:prettier",
"check:prettier": "prettier --check 'src/**/*.ts'",
"check:eslint": "eslint 'src/**/*.ts'",
"check": "pnpm run check:eslint && pnpm run check:prettier"
},
"packageManager": "pnpm@10.34.1+sha512.b58fbde6dca66a929538021581f648b4570b6ca19b18e7cbd7f2c07a7b24454155388dacdf08f2af3678e88a6d1fe04f9d609df24bf51735a060ea041b374ab7",
"author": "mabl",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0",
"async-retry": "1.3.3",
"axios": "1.17.0",
"cli-table3": "0.6.5",
"moment": "2.30.1"
},
"devDependencies": {
"@types/async-retry": "1.4.3",
"@types/jest": "29.2.0",
"@types/node": "24.13.1",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"eslint": "8.13.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-no-null": "1.0.2",
"jest": "29.2.1",
"prettier": "2.6.2",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
}
}