-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "@opentext/sdp-sdm-tests-to-run-conversion",
"version": "1.0.0",
"description": "JavaScript-based tool that converts the testsToRun parameter for running automated tests from OpenText Core Software Delivery Platform and OpenText Software Delivery Management.",
"main": "./dist/index.js",
"bin": {
"sdp-sdm-tests-to-run-conversion": "./dist/index.js"
},
"scripts": {
"test": "jest",
"run": "node dist/index.js",
"build": "npx ncc build src/main.ts -o dist --license licenses.txt",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MicroFocus/sdp-sdm-tests-to-run-conversion.git"
},
"keywords": [
"testsToRun",
"convertor",
"github",
"actions",
"alm",
"octane",
"valueedge",
"opentext"
],
"author": "Ovidiu Stefan Popescu",
"contributors": [
{
"name": "Ovidiu Stefan Popescu",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.4",
"@types/yargs": "^17.0.33",
"@vercel/ncc": "^0.38.2",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css}": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"yargs": "^17.7.2"
}
}