-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
45
46
47
48
49
50
51
{
"name": "http-basic",
"version": "8.1.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"description": "Very low level wrapper arround http.request/https.request",
"keywords": [
"http",
"https",
"request",
"fetch",
"gzip",
"deflate",
"redirect",
"cache",
"etag",
"cache-control"
],
"dependencies": {
"caseless": "^0.12.0",
"concat-stream": "^1.6.2",
"http-response-object": "^3.0.1",
"parse-cache-control": "^1.0.1"
},
"devDependencies": {
"@types/concat-stream": "^1.6.0",
"@types/node": "^11.9.0",
"flowgen2": "^2.2.1",
"rimraf": "^2.5.4",
"serve-static": "^1.11.1",
"typescript": "^2.3.4"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc && flowgen lib/**/*",
"pretest": "npm run build",
"test": "node test/index && node test/cache && node test/cache-invalidation && rimraf lib/cache"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ForbesLindesay/http-basic.git"
},
"author": "ForbesLindesay",
"license": "MIT"
}