-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "asker",
"version": "2.0.0",
"description": "http.request wrapper with request retries and http.Agent tuning",
"main": "./lib/asker.js",
"scripts": {
"lint": "eslint lib test && jscs lib test",
"unit": "mocha -u exports -R spec",
"coverage": "if [ ! -n \"$NO_COVERAGE\" ]; then istanbul cover _mocha -- -u exports -R dot test; fi",
"test": "npm run unit",
"pretest": "npm run lint",
"posttest": "npm run coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/nodules/asker.git"
},
"keywords": [
"http",
"request",
"client"
],
"author": "Phillip Kovalev <[email protected]> (https://github.com/kaero)",
"maintainers": [
"Phillip Kovalev <[email protected]> (https://github.com/kaero)"
],
"contributors": [
"Alexey Rybakov <[email protected]> (https://github.com/flackus)",
"Ivan Lukashov <[email protected]> (https://github.com/wayx)",
"Anton Kalinin <[email protected]> (https://github.com/antonKalinin)"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/nodules/asker/raw/master/LICENSE"
}
],
"files": [
"lib",
"*.md"
],
"readmeFilename": "README.md",
"dependencies": {
"asker-advanced-agent": "^0.1.0",
"contimer": "^1.0.1",
"object-assign": "^4.0.1",
"retry": "^0.8.0",
"terror": "^1.0.0",
"unzip-response": "^1.0.0"
},
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^1.9.0",
"eslint-config-nodules": "^0.1.1",
"formidable": "^1.2.1",
"istanbul": "*",
"jscs": "^2.0.0",
"jscs-preset-nodules": "^0.1.0",
"mocha": "^2.0.1",
"vow": "^0.4.0"
},
"engines": {
"node": ">=0.12"
}
}