forked from guyellis/http-status-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.31 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
70
71
72
73
74
75
76
77
78
{
"allSites": {
"excludedHeaders": [],
"requestHeaders": {
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
}
},
"author": "Guy Ellis <wildfiction@gmail.com> (http://www.guyellisrocks.com/)",
"bugs": {
"url": "https://github.com/guyellis/http-status-check/issues"
},
"concurrentRequests": 10,
"dependencies": {
"async": "2.5.0",
"colors": "1.1.2",
"debug": "3.0.1",
"lodash": "4.17.4",
"node-cron": "^1.2.1",
"nodemailer": "4.1.0",
"request": "2.81.0",
"string": "3.3.3",
"sugar": "2.0.4"
},
"description": "Utility to check the HTTP status of URL endpoints",
"devDependencies": {
"bunyan": "1.8.12",
"chai": "4.1.2",
"coveralls": "2.13.1",
"eslint": "4.5.0",
"eslint-config-guyellis": "0.0.6",
"istanbul": "0.4.5",
"mocha": "3.5.0",
"npm-update-outdated": "0.1.6",
"pre-commit": "1.2.2",
"rewire": "2.5.2"
},
"engines": {
"node": ">= 6.2"
},
"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",
"pre-commit-update",
"pre-commit-stash-save",
"coverage",
"post-commit-stash-pop",
"check-coverage"
],
"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.2.0"
}