-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.8 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
{
"name": "advinst-vsts-task",
"description": "Advanced Installer Task",
"version": "1.1.0",
"scripts": {
"compile": "tsc",
"clean": "rimraf dist",
"link": "pushd dist\\v2 && npm install && popd && pushd dist\\v3 && npm install && popd",
"copy": "copyfiles -u 1 src/**/*.{json,png} dist",
"build": "npm run clean && npm run compile && npm run copy && npm run link",
"vsix:release": "tfx extension create --output-path _package/advinst-vsts-task-release.vsix --override {\\\"public\\\":true}",
"vsix:preview": "tfx extension create --output-path _package/advinst-vsts-task-preview.vsix --extension-id AdvancedInstaller-Preview --override {\\\"name\\\":\\\"Preview Advanced Installer \\\", \\\"publisher\\\":\\\"caphyon-test\\\"}",
"package:release": "rimraf _package/advinst-vsts-task-release.vsix && npm run build && npm run vsix:release",
"package:preview": "rimraf _package/advinst-vsts-task-preview.vsix && npm run build && npm run vsix:preview",
"version": "node ./scripts/version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caphyon/advinst-vsts-task.git"
},
"keywords": [
"VSTS",
"task"
],
"author": "Caphyon",
"license": "MIT",
"bugs": {
"url": "https://github.com/caphyon/advinst-vsts-task/issues"
},
"homepage": "https://github.com/caphyon/advinst-vsts-task#readme",
"dependencies": {
"azure-pipelines-task-lib": "4.12.1",
"azure-pipelines-tool-lib": "2.0.7",
"compare-ver": "2.0.2",
"config-ini-parser": "1.6.1",
"registry-js": "1.16.0",
"semvish": "1.1.0"
},
"devDependencies": {
"@types/ini": "4.1.0",
"@types/node": "20.12.12",
"copyfiles": "2.4.1",
"eol": "0.9.1",
"mkdirp": "3.0.1",
"rimraf": "5.0.7",
"tfx-cli": "0.17.0",
"typescript": "5.4.5"
}
}