-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 733 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 733 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
33
34
{
"name": "ts-sync-request",
"version": "1.4.1",
"description": "TypeScript strongly-typed wrapper for sync-request library. Make synchronous http calls from TypeScript.",
"main": "dist/ts-sync-request.js",
"types": "dist/ts-sync-request.d.ts",
"license": "MIT",
"homepage": "https://github.com/VeritasSoftware/ts-sync-request",
"keywords": [
"typescript",
"wrapper",
"sync",
"synchronous",
"http",
"call",
"fluent",
"generic",
"request",
"library",
"sync-request",
"npm",
"package",
"ts-sync-request"
],
"scripts": {
"build": "tsc -p ."
},
"dependencies": {
"sync-request": "^6.0.0"
},
"devDependencies": {
"typescript": "^2.9.2"
}
}