-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 940 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
31
{
"name": "@qawolf/pr-testing-notify-closed-action",
"version": "v1.0.3",
"type": "commonjs",
"main": "dist/index.js",
"engines": {
"node": "^18 || >=20"
},
"scripts": {
"build": "ncc build src/index.ts -o dist",
"build:clean": "tsc --build --clean && rm -rf ./dist",
"lint": "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",
"gen": "npm run build"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks-types": "^7.5.1",
"@qawolf/ci-sdk": "*",
"@qawolf/ci-utils": "*",
"tslib": "^2.5.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}