-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.1 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
{
"name": "ads-pipeline-extension-sample",
"version": "0.0.0-development",
"description": "azure devops 流水线插件的示例",
"author": "Lean-Soft",
"scripts": {
"clean": "rimraf ./dist ./out/*pipeline-task*.vsix ./out/*pipeline-task*.zip",
"precompiled:sample": "npm run clean && tsc --build ./src/tasks/sample/tsconfig.json",
"package:prod:sample": "npm run precompiled:sample && tfx extension create --rev-version --manifest-globs vss-extension-sample.json --output-path ./out",
"publish:test:sample": "npm run precompiled:sample && tfx extension publish --rev-version --manifest-globs vss-extension-sample.json --output-path out --service-url https://tfs.devopshub.cn/ "
},
"repository": {
"type": "git",
"url": "https://github.com/smallidea/azure-devops-extension-custom-control-sample"
},
"dependencies": {
"@types/jquery": "^3.5.0",
"@types/q": "^1.5.4",
"vss-web-extension-sdk": "^5.141.0"
},
"devDependencies": {
"azure-pipelines-task-lib": "^3.1.2",
"typescript": "^3.9.7",
"rimraf": "~2.6.2"
},
"release": {
"plugins": []
}
}