-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 KB
/
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
32
33
34
35
36
37
{
"name": "allure-deployer-action",
"version": "1.0.0",
"description": "Host Allure test reports on the web with history, retries, and Slack integration—no server required",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"build:watch": "tsc --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"type": "module",
"dependencies": {
"@actions/artifact": "^2.2.2",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/request-error": "^6.1.7",
"@octokit/rest": "^21.1.1",
"allure-deployer-shared": "1.2.8",
"normalize-url": "^8.0.1",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/unzipper": "^0.10.10",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.31.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.0"
},
"overrides": {
"whatwg-url": "^14.0.0"
}
}