-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "alm-octane-github-actions-integration",
"version": "24.4.2",
"description": "A custom action which facilitates the connection between GitHub actions and ALM Octane.",
"main": "src/main.ts",
"scripts": {
"test": "jest",
"test-integration": "jest --testMatch=\"**/*.integration.*\"",
"build": "ncc build --license licenses.txt"
},
"keywords": [
"GitHub",
"actions",
"CI",
"pipeline",
"workflow",
"DevOps"
],
"contributors": [
{
"name": "Silviu-Constantin Anton",
"email": "[email protected]"
},
{
"name": "Ovidiu Stefan Popescu",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/adm-zip": "^0.5.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.8.5",
"@vercel/ncc": "^0.36.1",
"husky": "^9.0.11",
"jest": "^29.3.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@microfocus/alm-octane-js-rest-sdk": "^24.2.1",
"@microfocus/alm-octane-test-result-convertion": "^25.1.0",
"adm-zip": "^0.5.10",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"glob-promise": "^6.0.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css}": "prettier --write"
}
}