-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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": "dependabot-azure-devops",
"version": "2.0.0",
"description": "Dependabot Azure DevOps task",
"main": "''",
"scripts": {
"postdependencies": "cp -r node_modules tasks/dependabotV1/node_modules && cp -r node_modules tasks/dependabotV2/node_modules",
"build": "tsc -p .",
"start": "npm run start:V2",
"start:V1": "node tasks/dependabotV1/index.js",
"start:V2": "node tasks/dependabotV2/index.js",
"test": "jest",
"package": "npx tfx-cli extension create --json5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinglesoftware/dependabot-azure-devops.git"
},
"keywords": [
"dependabot",
"azure",
"devops"
],
"author": "Tingle Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/tinglesoftware/dependabot-azure-devops/issues"
},
"homepage": "https://github.com/tinglesoftware/dependabot-azure-devops#readme",
"dependencies": {
"axios": "1.7.9",
"azure-devops-node-api": "14.1.0",
"azure-pipelines-task-lib": "4.17.3",
"js-yaml": "4.1.0",
"semver": "7.6.3"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "22.10.7",
"@types/q": "1.5.8",
"@types/semver": "7.5.8",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"packageManager": "[email protected]"
}