-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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": "reqi",
"version": "1.0.4",
"description": "Promisified request library with built in functionality for retries, redirects, and body parsing.",
"keywords": [
"http",
"https",
"request",
"async",
"promise",
"retry",
"redirect"
],
"engines": {
"node": ">= 8.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mster/reqi.git"
},
"bugs": {
"url": "https://github.com/mster/reqi/issues"
},
"files": [
"lib/",
"index.js"
],
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "echo \"Running Lint...\" && standard --verbose && echo \"Lint Successful!\"",
"test": "npm run lint && npm run unit && npm run integration",
"unit": "echo \"Running Tape Unit Tests...\" && tape ./tests/unit/* && echo \"Tests Succesful!\"",
"integration": "echo \"Running Tape Integration Tests...\" && tape ./tests/integration/* && echo \"Tests Succesful!\""
},
"contributors": [
"Michael Sterpka <michaelsterpka@gmail.com> (https://github.com/mster)",
"Tyler Laskey <tlaskey3@gmail.com> (https://github.com/tlaskey)"
],
"license": "MIT",
"devDependencies": {
"standard": "^14.3.3",
"tape": "^4.13.2"
}
}