-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1021 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "web-request",
"version": "1.0.8",
"description": "Simplifies making web requests with TypeScript async/await",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davetemplin/web-request.git"
},
"keywords": [
"async",
"await",
"async/await",
"async-await",
"typescript",
"promise",
"request",
"web",
"http",
"stream",
"pipe"
],
"author": {
"name": "Dave Templin",
"email": "davetemplin@hotmail.com",
"url": "https://github.com/davetemplin/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davetemplin/web-request/issues"
},
"homepage": "https://github.com/davetemplin/web-request#readme",
"devDependencies": {
"@types/chai": "^4.0.3",
"@types/mocha": "^2.2.41",
"chai": "^3.4.1",
"mocha": "^2.3.4"
},
"dependencies": {
"@types/node": "^8.0.22",
"@types/request": "^2.0.1",
"request": "^2.69.0"
}
}