-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.13 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
{
"author": {
"name": "Johannes Sanders"
},
"bugs": {
"url": "https://github.com/johannessanders/rss-to-js/issues"
},
"bundleDependencies": false,
"dependencies": {
"entities": "^1.1.1",
"stream": "0.0.2",
"timers": "^0.1.1",
"xml2js": "^0.4.19"
},
"deprecated": false,
"description": "A lightweight JavaScript RSS to JS parser",
"devDependencies": {
"@types/xml2js": "^0.4.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"chai": "^3.4.1",
"mocha": "^5.2.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/johannessanders/rss-to-js#readme",
"keywords": [
"RSS",
"RSS reader",
"RSS parser",
"RSS to JS",
"Feed reader"
],
"license": "MIT",
"main": "index.js",
"name": "rss-to-js",
"repository": {
"type": "git",
"url": "git+https://github.com/johannessanders/rss-to-js.git"
},
"scripts": {
"build": "./scripts/build.sh",
"test": "mocha --exit --timeout 10000"
},
"types": "index.d.ts",
"version": "1.0.1"
}