-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.08 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.08 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
{
"name": "@qawolf/notify-qawolf-on-deploy-action",
"version": "v1.2.1",
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && node esbuild.mjs",
"lint": "dpdm --exit-code circular:1 --no-tree --no-warning --transform --include='.*' --exclude='/(dist|node_modules)/' '**/*' && eslint . --ext cjs,cts,js,jsx,mjs,ts,tsx --quiet && prettier --check .",
"lint:fix": "eslint . --ext cjs,cts,js,jsx,mjs,ts,tsx --fix --quiet && prettier --log-level=warn --write .",
"lint:warnings": "eslint . --ext cjs,cts,js,jsx,mjs,ts,tsx",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" NODE_NO_WARNINGS=1 jest --passWithNoTests",
"test:watch": "npm run test -- --watch",
"tsc:check": "tsc"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/github": "^9.0.0",
"@octokit/webhooks-types": "^7.6.1",
"@qawolf/ci-sdk": "*",
"@qawolf/ci-utils": "*",
"tslib": "^2.6.2",
"zod": "^4.1.11"
},
"devDependencies": {
"esbuild": "^0.25.9"
},
"engines": {
"node": ">=22.22.0 <25"
}
}