forked from StefanKert/azuredevops-codesigning-task
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
50
51
52
53
{
"name": "stefankert.azuredevops-codesigning-task",
"version": "2.1.0",
"description": "Build task for Azure DevOps that gives the user the ability to codesign assemblies and applications.",
"author": "Stefan Kert",
"license": "MIT",
"homepage": "https://github.com/StefanKert/azuredevops-codesigning-task#readme",
"repository": "https://github.com/StefanKert/azuredevops-codesigning-task",
"bugs": {
"url": "https://github.com/StefanKert/azuredevops-codesigning-task/issues"
},
"keywords": [
"VSTS",
"release",
"build",
"codesigning",
"signing",
"signtool",
"sign",
"cert",
"certificate"
],
"dependencies": {
"azure-devops-node-api": "^7.2.0",
"azure-pipelines-task-lib": "^2.8.0"
},
"scripts": {
"build": "tsc -p .",
"postbuild": "npm run package",
"package": "tfx extension create --rev-version",
"testlocal": "tsc -p . && mocha ./tests/L0.js",
"test": "tsc && mocha ./tests/L0.js --reporter mocha-junit-reporter"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^9.6.2",
"@types/q": "^1.5.0",
"mocha-junit-reporter": "^1.18.0",
"gulp": "^4.0.0",
"gulp-debug": "^3.0.0",
"gulp-typescript": "^4.0.2",
"tfx-cli": "^0.6.3",
"typescript": "^2.9.2",
"del": "^2.2.2",
"mocha": "^6.0.2",
"plugin-error": "^1.0.1",
"semver": "^5.5.0",
"shelljs": "^0.7.5",
"fancy-log": "^1.3.2",
"merge-stream": "^1.0.1",
"minimist": "^1.2.0"
}
}