-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "rss-to-json",
"version": "2.1.1",
"description": "Rss to Json: RSS and Atom feed generator for Node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "webpack --config webpack.config.js --mode development --progress",
"prod": "webpack --config webpack.config.js --mode production --progress",
"pub": "npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nasa8x/rss-to-json.git"
},
"bugs": {
"url": "https://github.com/nasa8x/rss-to-json/issues"
},
"homepage": "https://morioh.com/topic/node-js",
"keywords": [
"rss-to-json",
"rss",
"rssparser",
"rssreader",
"rss reader",
"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"
],
"author": "Morioh Team",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"run-script-webpack-plugin": "^0.1.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"axios": "^1.2.6",
"fast-xml-parser": "^4.0.15"
}
}