-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
66
67
68
69
{
"allSites": {
"excludedHeaders": [],
"requestHeaders": {
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
}
},
"author": "Guy Ellis <[email protected]> (http://www.guyellisrocks.com/)",
"bugs": {
"url": "https://github.com/guyellis/http-status-check/issues"
},
"concurrentRequests": 10,
"dependencies": {
"async": "3.2.6",
"debug": "4.4.0",
"lodash": "4.17.21",
"nodemailer": "6.9.16",
"request": "2.88.2",
"string": "3.3.3",
"sugar": "2.0.6"
},
"description": "Utility to check the HTTP status of URL endpoints",
"devDependencies": {
"bunyan": "1.8.15",
"chai": "5.1.2",
"coveralls": "3.1.1",
"eslint": "9.17.0",
"eslint-config-guyellis": "0.0.6",
"istanbul": "0.4.5",
"mocha": "11.0.1",
"npm-update-outdated": "0.1.6",
"pre-commit": "1.2.2",
"rewire": "7.0.0"
},
"homepage": "https://github.com/guyellis/http-status-check",
"inAdapter": {
"type": "./lib/inAdapters/fileAdapter"
},
"keywords": [
"http",
"status",
"checker"
],
"license": "MIT",
"main": "index.js",
"name": "http-status-check",
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/guyellis/http-status-check.git"
},
"scripts": {
"check-coverage": "node_modules/.bin/istanbul check-coverage ./coverage/coverage.json",
"coverage": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- ./test/ --recursive",
"coveralls": "node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose",
"lint": "node_modules/.bin/eslint --ext .js .",
"lintfix": "node_modules/.bin/eslint --ext .js . --fix",
"post-commit-stash-pop": "git stash pop",
"posttest": "npm run lint",
"pre-commit-stash-save": "git stash --keep-index",
"pre-commit-update": "node_modules/.bin/npm-update-outdated",
"start": "node index.js",
"test": "node_modules/.bin/mocha ./test/ --recursive"
},
"version": "1.1.0"
}