-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
26 lines (26 loc) · 1.28 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
{
"name": "azure-pipelines-tasks-terraform",
"version": "1.0.0",
"description": "This contains the Azure Pipelines tasks for installing and executing terraform commands.",
"scripts": {
"pack-cli": "cd ./tasks/terraform-cli && npm install --include:dev && npm run build && npm run pack && sh ./../../scripts/set-version.sh",
"pack-inst": "cd ./tasks/terraform-installer && npm install --include:dev && npm run build && npm run pack && sh ./../../scripts/set-version.sh",
"pack-views": "cd ./views/terraform-plan && npm install --include:dev && npm run build && npm run pack",
"publish:self": "tfx extension create --manifest-globs vss-extension.json vss-extension-rc.json --overrides-file ./self.json",
"package:self": "npm install --include:dev && npm run pack-views && npm run pack-cli && npm run pack-inst && npm run publish:self"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jason-johnson/azure-pipelines-tasks-terraform.git"
},
"author": "Charles Zipp",
"license": "MIT",
"bugs": {
"url": "https://github.com/jason-johnson/azure-pipelines-tasks-terraform/issues"
},
"homepage": "https://github.com/jason-johnson/azure-pipelines-tasks-terraform#readme",
"devDependencies": {
"sass": "^1.80.7",
"tfx-cli": "^0.17.0"
}
}