-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 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": "@automaid/rss-service",
"version": "1.0.0",
"description": "Expose RSS Feeds via a http endpoint. Can call http apis when a new item joins the feed",
"main": "src/index.js",
"bin": "bin/rss-service",
"scripts": {
"start": "bin/rss-service",
"lint": "eslint src/** bin/** test/**",
"test": "mocha --recursive",
"remotedev": "remotedev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/automaid/generic-rss-service.git"
},
"author": "Max Jöhnk <maxjoehnk@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/automaid/generic-rss-service/issues"
},
"homepage": "https://github.com/automaid/generic-rss-service#readme",
"dependencies": {
"@automaid/url-executor": "^1.0.0",
"bunyan": "^1.8.10",
"bunyan-format": "^0.2.1",
"feedparser": "^2.2.4",
"js-yaml": "^3.10.0",
"node-fetch": "^1.7.3",
"object-hash": "^1.2.0",
"redux": "^3.7.2",
"redux-saga": "^0.15.6",
"remote-redux-devtools": "^0.5.12",
"restify": "^5.2.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.11.0",
"mocha": "^3.5.3",
"mockery": "^2.1.0",
"remotedev-server": "^0.2.4",
"sinon": "^3.3.0",
"sinon-chai": "^2.14.0"
}
}