-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 850 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
35
36
37
38
39
40
41
{
"name": "wgetjs",
"version": "0.3.6",
"description": "Ultra simple async retrieval of remote files over http or https",
"main": "wget.js",
"scripts": {
"test": "mocha -R list test/*.js",
"TESTS.md": "mocha -R markdown test/*.js > TESTS.md"
},
"repository": {
"type": "git",
"url": "https://github.com/angleman/wgetjs.git"
},
"keywords": [
"curl",
"wget",
"download",
"file",
"http",
"https"
],
"author": "angleman",
"license": "MIT",
"bugs": {
"url": "https://github.com/angleman/wgetjs/issues"
},
"engines": {
"node": ">=0.8.6"
},
"dependencies": {
"request": "~2.27.0"
},
"devDependencies": {
"license-md": "~0.2.5",
"grunt": "~0.4.1",
"grunt-bump": "~0.0.11",
"grunt-license": "~0.1.4",
"mocha": "~1.12.0",
"should": "~1.2.2"
}
}