-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·66 lines (66 loc) · 1.96 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
59
60
61
62
63
64
65
66
{
"name": "parasoft-findings-vsts",
"version": "1.2.4",
"description": "Parasoft Findings enables you to visualize test and static analysis results generated by Parasoft products in Azure DevOps",
"main": "index.js",
"scripts": {
"downloadReportGenerator": "tsc ./scripts/DownloadReportGenerator.ts && node ./scripts/downloadReportGenerator.js",
"clean": "del-cli coverage .nyc_output target test-reports eslint && npx tsc --build --clean",
"eslint": "npx eslint . --ext .ts -f checkstyle -o eslint/eslint-report.xml || true",
"test": "npm run clean && npm run eslint && npm run compile && nyc jasmine",
"compile": "npx tsc --build --clean && npx tsc && cd ./PublishParasoftResults && npm run compilexsl && cd ..",
"create-extension": "npm run downloadReportGenerator && npm test && npx tfx-cli extension create"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"spec/*",
"coverage"
],
"reporter": [
"html",
"cobertura"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasoft/parasoft-findings-vsts.git"
},
"keywords": [
"azure",
"vsts",
"Dashboards & Reporting",
"Test Management",
"Test Automation",
"Static Analysis",
"Parasoft",
"SOAtest",
"XTest",
"Build task",
"Test task"
],
"author": "Parasoft Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/parasoft/parasoft-findings-vsts/issues"
},
"homepage": "https://github.com/parasoft/parasoft-findings-vsts#readme",
"icon": "images/icon.png",
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/jasmine": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"adm-zip": "^0.5.10",
"del-cli": "^5.0.0",
"eslint": "^8.56.0",
"jasmine": "^5.0.0",
"jasmine-reporters": "^2.5.2",
"nyc": "^15.1.0"
}
}