-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "rss-parser",
"version": "3.13.0",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --reporter-option maxDiffSize=0 --exit",
"build": "./scripts/build.sh"
},
"author": "Bobby Brennan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@types/xml2js": "^0.4.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"chai": "^3.4.1",
"express": "^4.16.3",
"mocha": "^10.2.0",
"puppeteer": "^5.5.0"
},
"dependencies": {
"entities": "^2.0.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"xml2js": "^0.5.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bobby-brennan/rss-parser.git"
},
"bugs": {
"url": "https://github.com/bobby-brennan/rss-parser/issues"
},
"homepage": "https://github.com/bobby-brennan/rss-parser#readme",
"description": "A lightweight RSS parser, for Node and the browser",
"keywords": [
"RSS",
"RSS to JSON",
"RSS reader",
"RSS parser",
"RSS to JS",
"Feed reader"
]
}