-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.03 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
52
{
"name": "req-fast",
"version": "0.2.21",
"description": "This module is designed to be the fast, lightweight way to fetch the web content(HTML stream).",
"main": "lib/req.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec -t 30000"
},
"repository": {
"type": "git",
"url": "git://github.com/Tjatse/req-fast.git"
},
"keywords": [
"request",
"http",
"client",
"fetch",
"grab",
"download"
],
"author": "Tjatse",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Tjatse/req-fast/issues"
},
"engines": [
"node >= 0.12.0"
],
"dependencies": {
"debug": "^2.6.0",
"iconv-lite": "^0.4.15",
"tunnel2": "^0.0.5",
"urijs": "^1.18.4",
"user-agents": "^1.0.387"
},
"devDependencies": {
"async": "^2.1.4",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"request": "^2.79.0"
},
"standard": {
"ignore": [],
"globals": [
"describe",
"it",
"before",
"after"
]
},
"readmeFilename": "README.md"
}