forked from carlowahlstedt/NewmanPostman_VSTS_Task
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 718 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 718 Bytes
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
{
"scripts": {
"package": "npm run clean && npm run compile && tfx extension create --rev-version",
"gallery-publish": "tfx extension publish",
"gallery-publish-rev": "tfx extension publish --rev-version",
"clean": "rimraf ./*.vsix",
"compile": "tsc -p .",
"install-task-lib": "cd NewmanPostman && npm install --save-dev",
"pretest": "tsc -p .",
"test": "mocha Tests\\TestSuite.js"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.7",
"tfx-cli": "^0.6.1",
"typescript": "2.3.4"
},
"name": "vstsexttask",
"private": true,
"version": "0.0.1",
"dependencies": {
"azure-pipelines-task-lib": "^2.7.7",
"mocha": "^5.2.0"
}
}