-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 1.78 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "rss-in-json",
"version": "1.0.0",
"description": "Utility for parsing RSS and ATOM feeds to JSON format.",
"main": "dist/index.js",
"author": "Oluwadamilola Babalola",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"htmlparser": "^1.7.7",
"xml2js": "^0.4.22"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --progress --watch --colors",
"prod": "cross-env NODE_ENV=production webpack -p --progress --colors",
"test": "node ./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thedammyking/rss-in-json.git"
},
"bugs": {
"url": "https://github.com/thedammyking/rss-in-json/issues"
},
"directories": {
"example": "example"
},
"homepage": "",
"keywords": [
"rss-in-json",
"rss in json",
"rss feed to json",
"rss feed json",
"rss-feed-json",
"rss-feed-parser",
"rss feed parser",
"rssfeed",
"rss",
"rssparser",
"rssreader",
"rss reader",
"rss-reader",
"rss parser",
"rss-parser",
"rss",
"parser",
"reader",
"xml2js",
"xml2json",
"rss to json",
"rss2json",
"rss 2 json",
"feed-read",
"feed read",
"feed",
"feedparser",
"feed-parser",
"feed parser",
"feed-reader",
"feedreader",
"feed reader",
"rss json",
"rssjson",
"rss-json",
"rss feed",
"rssfeed",
"atomfeed",
"atom-feed",
"atom-feed-parser",
"atom-parser",
"atomreader",
"atom-reader",
"rssfeed",
"rss-feed"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.1",
"eslint": "^6.7.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-node-externals": "^1.6.0"
}
}