-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"private": true,
"name": "has-news-alert",
"version": "1.0.0",
"description": "If any RSS feed items are less than `alertOnLessThan` old, then 'FAIL' | © Nick Freear, 19-June-2019.",
"homepage": "https://nick.freear.org.uk",
"license": "MIT",
"author": "Nick Freear {@nfreear",
"main": "index.js",
"engines": {
"node": ">= 8"
},
"dependencies": {
"datejs": "^1.0.0-rc3",
"node-notifier": "^5.2.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"rss-parser": "^3.4.0",
"timeago.js": "^3.0.2"
},
"devDependencies": {
"semistandard": "^12.0.1"
},
"scripts": {
"has-news-alert": "./cli.js",
"fix": "semistandard --fix",
"test": "semistandard"
},
"repository": "https://github.com/nfreear/news-alerts.git",
"keywords": [],
"eslintConfig": {
"extends": "semistandard",
"parserOptions": {
"ecmaVersion": 7
},
"rules": {
"require-await": "error"
}
},
"semistandard": {
"exclude": []
},
"x-hasNewsAlertConfig": {
"alertOnLessThan": "20 days",
"runOnTravisCI": true,
"feedUrls": [
"http://www.open.ac.uk/blogs/CALRG/?feed=rss2",
"http://www.headstar.com/eablive/?feed=rss2",
"http://www.headstar.com/eablive/?feed=rss2&post_type=eab_bulletin",
"https://nick.freear.org.uk/feed.xml"
]
}
}