-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 991 Bytes
/
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
{
"name": "@qawolf/notify-qawolf-on-deploy-action",
"version": "v1.1.1",
"type": "commonjs",
"main": "dist/index.js",
"engines": {
"node": "^16 || ^18 || ^20"
},
"scripts": {
"build": "npx esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --tsconfig=tsconfig.build.json",
"build:clean": "tsc --build --clean && rm -rf ./dist",
"lint": "cycle-import-scan . && eslint . --ext js,jsx,mjs,ts,tsx --quiet && prettier --check .",
"lint:fix": "eslint . --ext js,jsx,mjs,ts,tsx --fix --quiet && prettier --log-level=warn --write .",
"lint:warnings": "eslint . --ext js,jsx,mjs,ts,tsx",
"test": "jest --passWithNoTests",
"test:watch": "npm run test -- --watch",
"tsc:check": "tsc"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@qawolf/ci-sdk": "*",
"@qawolf/ci-utils": "*",
"tslib": "^2.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"esbuild": "^0.19.2"
}
}