-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.61 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
{
"name": "graphql-rss-parser",
"version": "3.0.4",
"description": "A microservice that parses rss feeds and makes it available as grahpql schema",
"main": "dist/index.js",
"engines": {
"node": ">=14"
},
"bin": {
"graphql-rss-parser": "./cli.js"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"start": "./cli.js",
"dev": "nodemon --ext ts,js,json,mjs -w src -w package-lock.json -w tsconfig ./dev.js",
"test": "jest",
"lint": "eslint --cache --ext ts,tsx,js,jsx .",
"format": "eslint --cache --quiet --fix --ext ts,tsx,js,jsx .",
"release": "yarn build && standard-version -i changelog.md -m '%s'",
"lint:errors": "eslint --cache --quiet --ext ts,tsx,js,jsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/relekang/graphql-rss-parser.git"
},
"files": [
"dist",
"cli.js",
"license",
"readme.md"
],
"author": "Rolf Erik Lekang",
"license": "MIT",
"bugs": {
"url": "https://github.com/relekang/graphql-rss-parser/issues"
},
"homepage": "https://github.com/relekang/graphql-rss-parser#readme",
"dependencies": {
"@graphql-tools/schema": "^9.0.12",
"@sentry/node": "^7.29.0",
"@types/micro": "^7.3.7",
"apollo-server-micro": "^3.11.1",
"axios": "^1.2.2",
"cheerio": "^1.0.0-rc.10",
"cmd-ts": "^0.11.0",
"debug": "^4.2.0",
"feedme": "^2.0.2",
"graphql": "^16.6.0",
"http-status-codes": "^2.2.0",
"is-url": "^1.2.4",
"lodash-fp": "^0.10.4",
"micro": "^9.3.4",
"node-feedparser": "^1.0.1",
"normalize-url": "^6.0.1",
"rss-parser": "^3.12.0",
"rss-to-json": "^1.1.3",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/debug": "^4.1.7",
"@types/feedparser": "^2.2.5",
"@types/fs-extra-promise": "^1.0.10",
"@types/is-url": "^1.2.30",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"eslint": "^8.11.0",
"eslint-config-relekang": "^2.1.13",
"fs-extra-promise": "^1.0.1",
"jest": "^29.3.1",
"nock": "^13.2.4",
"nodemon": "^2.0.15",
"prettier": "^2.3.1",
"standard-version": "^9.3.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"resolutions": {
"node-fetch": ">=2.6.1 <3.0.0-beta.1|| >= 3.0.0-beta.9",
"lodash": ">=4.17.21",
"minimist": ">=0.2.1 <1.0.0 || >=1.2.3",
"acorn": ">=5.7.4 <6.0.0 || >=6.4.1 <7.0.0 || >=7.1.1",
"y18n": ">=5.0.5||>=4.0.1 <5.0.0||>=3.2.2 <4.0.0",
"trim-newlines": ">=3.0.1 <4.0.0 || >=4.0.1",
"ws": ">=5.2.3 <6.0.0 || >=6.2.2 <7.0.0 || >=7.4.6"
}
}