-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "rss-feed-emitter",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "eslint --ext ts src",
"lint": "eslint --fix --ext ts src",
"build": "tsc -p .",
"watch": "tsc -p . -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TridentBot/rss-feed-emitter.git"
},
"keywords": [
"rss",
"feeds",
"emitter",
"rss-feeds"
],
"author": "Jacz <jacz@jaczaus.me> (jaczaus.me)",
"contributors": [
"QuantumlyTangled (https://github.com/QuantumlyTangled)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TridentBot/rss-feed-emitter/issues"
},
"homepage": "https://github.com/TridentBot/rss-feed-emitter#readme",
"devDependencies": {
"@types/feedparser": "^2.2.2",
"@types/node": "^12.0.7",
"@types/node-fetch": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"typescript": "^3.5.1"
},
"dependencies": {
"@advancedmap/advancedmap": "^0.2.0",
"feedparser": "^2.2.9",
"node-fetch": "^2.6.0"
}
}