-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 995 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 995 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
42
{
"name": "http-oversight",
"version": "0.0.2",
"description": "A node module that groups together useful http functions.",
"main": "module.js",
"scripts": {
"test": "mocha --exit --timeout=600000 tests/main.test.js",
"tests": "mocha --exit --timeout=600000 tests/main.test.js"
},
"keywords": [
"http",
"https",
"http-redirects",
"http-checks",
"http-validation",
"http-tests",
"http-audit",
"http-oversight",
"http-inspect"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ibragim64/http-oversight.git"
},
"author": "Ibragim Abubakarov",
"license": "MIT",
"bugs": {
"url": "https://github.com/ibragim64/http-oversight/issues"
},
"homepage": "https://github.com/ibragim64/http-oversight",
"dependencies": {
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"devDependencies": {
"mocha": "^8.2.1"
},
"directories": {
"doc": "docs",
"test": "tests"
}
}