-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.86 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "tfx-cli",
"version": "0.23.1",
"description": "CLI for Azure DevOps Services and Team Foundation Server",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/tfs-cli"
},
"main": "./_build/tfx-cli.js",
"preferGlobal": true,
"bin": {
"tfx": "./_build/tfx-cli.js"
},
"scripts": {
"install-credprovider": "npm install --global @microsoft/artifacts-npm-credprovider --registry https://pkgs.dev.azure.com/artifacts-public/23934c1b-a3b5-4b70-9dd3-d1bef4cc72a0/_packaging/AzureArtifacts/npm/registry/",
"npmauth": "artifacts-npm-credprovider -c .npmrc",
"clean": "rimraf _build && rimraf _tests",
"build": "tsc -p .",
"postbuild": "ncp app/tfx-cli.js _build/tfx-cli.js && ncp package.json _build/package.json && ncp app/exec/build/tasks/_resources _build/exec/build/tasks/_resources",
"prepublishOnly": "npm run build",
"build:tests": "tsc -p tsconfig.tests.json",
"postbuild:tests": "ncp tests/build-samples _tests/build-samples && ncp tests/extension-samples _tests/extension-samples",
"test": "npm run build:tests && mocha \"_tests/tests/**/*.js\"",
"test:ci": "npm run build:tests && mocha \"_tests/tests/**/*.js\" --reporter mocha-multi-reporters --reporter-options configFile=.mocha-multi-reporters.json",
"test:commandline": "npm run build:tests && mocha \"_tests/tests/commandline.js\"",
"test:server-integration": "npm run build:tests && mocha \"_tests/tests/server-integration-*.js\"",
"test:focused-login": "npm run build:tests && mocha \"_tests/tests/focused-login-test.js\"",
"test:server-integration-login": "npm run build:tests && mocha \"_tests/tests/server-integration-login.js\"",
"test:server-integration-workitem": "npm run build:tests && mocha \"_tests/tests/server-integration-workitem.js\"",
"test:build-local": "npm run build:tests && mocha \"_tests/tests/build-local-tests.js\"",
"test:build-server-integration": "npm run build:tests && mocha \"_tests/tests/build-server-integration-tests.js\"",
"test:build-consolidated": "npm run test:build-local && npm run test:build-server-integration",
"test:extension-local": "npm run build:tests && mocha \"_tests/tests/extension-local-tests.js\"",
"test:extension-server-integration": "npm run build:tests && mocha \"_tests/tests/extension-server-integration-tests.js\"",
"test:extension-consolidated": "npm run test:extension-local && npm run test:extension-server-integration"
},
"overrides": {
"archiver-utils": {
"glob": "^10.5.0"
}
},
"dependencies": {
"app-root-path": "1.0.0",
"archiver": "^7.0.1",
"azure-devops-node-api": "^14.0.0",
"clipboardy": "^4.0.0",
"colors": "~1.3.0",
"glob": "^11.1.0",
"jju": "^1.4.0",
"json-in-place": "^1.0.1",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"mkdirp": "^1.0.4",
"onecolor": "^2.5.0",
"os-homedir": "^1.0.1",
"prompt": "^1.3.0",
"read": "^1.0.6",
"shelljs": "^0.10.0",
"tmp": "^0.2.4",
"tracer": "0.7.4",
"util.promisify": "^1.0.0",
"uuid": "^13.0.0",
"validator": "^13.15.23",
"winreg": "0.0.12",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/clipboardy": "~1.1.0",
"@types/jju": "^1.4.1",
"@types/jszip": "~3.1.2",
"@types/lodash": "~4.14.110",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^10.0.0",
"@types/node": "8.10.66",
"@types/shelljs": "^0.8.11",
"@types/validator": "^4.5.27",
"@types/winreg": "^1.2.29",
"@types/xml2js": "0.0.27",
"adm-zip": "^0.5.16",
"mocha": "^10.2.0",
"mocha-multi-reporters": "^1.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=20.0.0"
},
"author": "Microsoft Corporation",
"contributors": [
{
"email": "trgau@microsoft.com",
"name": "Trevor Gau"
}
],
"license": "MIT"
}