-
Notifications
You must be signed in to change notification settings - Fork 231
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "azure-devops-node-api",
"description": "Node client for Azure DevOps and TFS REST APIs",
"version": "14.1.0",
"main": "./WebApi.js",
"types": "./WebApi.d.ts",
"scripts": {
"build": "node make.js build",
"samples": "node make.js samples",
"test": "node make.js test",
"units": "node make.js units"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/azure-devops-node-api"
},
"author": "Microsoft Corporation",
"contributors": [
"Bryan MacFarlane <[email protected]>",
"Daniel McCormick<[email protected]>",
"Scott Dallamura <[email protected]>",
"Stephen Franceschelli<[email protected]>",
"Teddy Ward <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">= 16.0.0"
},
"dependencies": {
"tunnel": "0.0.6",
"typed-rest-client": "2.1.0"
},
"devDependencies": {
"@types/glob": "5.0.35",
"@types/minimatch": "3.0.3",
"@types/mocha": "^2.2.44",
"@types/node": "16.11.7",
"@types/shelljs": "0.8.5",
"mocha": "^10.4.0",
"nock": "9.6.1",
"shelljs": "^0.8.5",
"typescript": "4.0.2"
}
}