-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
25 lines (25 loc) · 1.17 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
{
"name": "azure-pipelines-tasks-terraform",
"version": "0.1.7",
"description": "This contains the Azure DevOps Pipeline tasks for installing and executing terraform commands within a build or release. These tasks are intended to work on any build agent. They are also intended to provide a guided abstraction to deploying infrastructure within Azure.",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"cross-var": "^1.1.0",
"tfx-cli": "^0.6.3"
},
"scripts": {
"pack" : "cross-var ./node_modules/.bin/tfx extension create --manifests vss-extension.json --output-path .bin --override { \\\"version\\\" : \\\"$npm_package_version\\\" }",
"publish" : "cross-var ./node_modules/.bin/tfx extension publish --vsix .bin/charleszipp.azure-pipelines-tasks-terraform-$npm_package_version.vsix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charleszipp/azure-pipelines-tasks-terraform.git"
},
"author": "Charles Zipp",
"license": "MIT",
"bugs": {
"url": "https://github.com/charleszipp/azure-pipelines-tasks-terraform/issues"
},
"homepage": "https://github.com/charleszipp/azure-pipelines-tasks-terraform#readme"
}