forked from microsoft/typed-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 955 Bytes
/
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
{
"name": "typed-rest-client",
"version": "0.10.0",
"description": "Node Rest and Http Clients with typings for use with TypeScript",
"main": "./RestClient.js",
"scripts": {
"build": "node make.js build",
"test": "node make.js test",
"samples": "node make.js samples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/typed-rest-client.git"
},
"keywords": [
"rest",
"http",
"client",
"typescript",
"node"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/typed-rest-client/issues"
},
"homepage": "https://github.com/Microsoft/typed-rest-client#readme",
"devDependencies": {
"shelljs": "0.7.0",
"typescript": "2.1.4"
},
"dependencies": {
"tunnel": "0.0.4",
"underscore": "1.8.3"
}
}