-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ap-cobertura-transform",
"version": "0.0.8",
"description": "Azure Pipelines task to transform Cobertura 3 reports to Cobertura 4 format",
"scripts": {
"build": "npm run lint && npm run coverage:enforce",
"clean": "rimraf .testresults .coverage .publish .vsix",
"lint": "eslint **/*.js",
"test": "npm run test:unit",
"test:all": "npm run test:unit && npm run test:component",
"test:unit": "mocha --opts test/unit/mocha.opts",
"pretest:unit": "rimraf .testresults/unit .coverage/unit",
"coverage": "nyc --report-dir .coverage/unit --check-coverage false npm run test:unit",
"coverage:enforce": "nyc --report-dir .coverage/unit npm run test:unit",
"coverage:open": "npm run coverage && open-cli .coverage/unit/index.html",
"package:deps": "copy-node-modules . .publish/transform-3-to-4",
"package:task": "mkdirp .publish/transform-3-to-4 && ncp tasks/transform-3-to-4 .publish/transform-3-to-4",
"prepackage": "npm run clean && npm run version:bump && npm run package:deps && npm run package:task",
"package": "tfx extension create --manifest-globs vss-extension.json --output-path .vsix/",
"pretask:upload": "npm run prepackage",
"tfx:login": "tfx login",
"task:upload": "tfx build tasks upload --task-path .publish/transform-3-to-4",
"task:delete": "tfx build tasks delete --task-id ae5147f1-1859-49cf-8950-f17e73008ce2",
"dev:setup": "npm i && npm run build",
"dev:reset": "npm run clean && node -e \"require('rimraf').sync('node_modules');\" && npm run dev:setup",
"version:bump": "npm run manifests:version:bump && npm run npm:version:bump:tagless",
"npm:version:bump:tagless": "npm --no-git-tag-version version patch",
"manifests:version:bump": "vsts-bump tasks/**/task.json && bump vss-extension.json patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swellaby/ap-cobertura-transform.git"
},
"author": {
"email": "[email protected]",
"name": "Swellaby",
"url": "http://swellaby.com"
},
"contributors": [
{
"email": "[email protected]",
"name": "Caleb Cartwright",
"url": "https://github.com/calebcartwright"
}
],
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/swellaby/ap-cobertura-transform/issues/new/choose"
},
"homepage": "https://github.com/swellaby/ap-cobertura-transform",
"keywords": [
"cobertura",
"azure pipelines",
"azure devops",
"transform",
"coverage report"
],
"devDependencies": {
"@swellaby/eslint-config": "^2.0.0",
"@swellaby/nyc-config": "^3.0.13",
"bump-file": "^2.0.0",
"chai": "^4.3.10",
"copy-node-modules": "^1.1.1",
"eslint": "^8.50.0",
"husky": "^4.2.5",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"ncp": "^2.0.0",
"nyc": "^15.1.0",
"open-cli": "7.2.0",
"rimraf": "^5.0.5",
"sinon": "^16.1.0",
"tfx-cli": "^0.16.0",
"vsts-bump": "^1.1.8"
},
"dependencies": {
"azure-pipelines-task-lib": "^4.6.0",
"cobertura-transform": "^0.3.0"
}
}