forked from microsoft/azure-devops-node-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 925 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 925 Bytes
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
{
"name": "vso-node-api",
"description": "Node client for Visual Studio Online/TFS REST APIs",
"version": "6.2.8-preview",
"main": "./WebApi.js",
"typings": "./WebApi.d.ts",
"scripts": {
"build": "node make.js build",
"test": "node make.js test",
"samples": "node make.js test && node samples/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vso-node-api"
},
"author": "Microsoft Corporation",
"contributors": [
"Bryan MacFarlane <bryanmac@microsoft.com>",
"Scott Dallamura <scdallam@microsoft.com>",
"Teddy Ward <t-edward@microsoft.com>"
],
"license": "MIT",
"dependencies": {
"tunnel": "0.0.4",
"typed-rest-client": "^0.12.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"shelljs": "^0.7.0",
"typescript": "^2.1.4"
}
}