-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
21 lines (21 loc) · 972 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "mutation-report-publisher",
"description": "With this extension you add the mutation report to your build summary so you can view the mutation test result on azure devops.",
"author": "Rouke Broersma",
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"compile": "lerna run compile",
"bump:task": "lerna run bump:task",
"bump:task:minor": "lerna run bump:task:minor",
"bump:task:major": "lerna run bump:task:major",
"package": "lerna run compile && tfx extension create --manifest-globs ./extension/azure-devops-extension.json",
"package:dev": "lerna run compile:dev && tfx extension create --manifest-globs ./extension/azure-devops-extension.json --overrides-file ./extension/azure-devops-extension-patch.dev.json",
"clean": "rimraf ./*.vsix",
"clean:all": "rimraf ./*.vsix && rimraf ./node_modules"
},
"devDependencies": {
"lerna": "^5.0.0",
"rimraf": "^5.0.0",
"tfx-cli": "^0.17.0"
}
}