-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "rss-url-finder",
"version": "0.0.6",
"description": " A javascript/typescript library to search RSS feed via URL or HTML body ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node ./src/index.ts",
"build": "tsc",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cr0wg4n/rss-url-finder.git"
},
"keywords": [
"rss",
"rss-finder",
"feeds"
],
"author": {
"name": "Mauricio Matias",
"url": "https://cr0wg4n.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cr0wg4n/rss-url-finder/issues"
},
"homepage": "https://github.com/cr0wg4n/rss-url-finder#readme",
"dependencies": {
"node-html-parser": "^6.1.5"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.5.0",
"@stylistic/eslint-plugin": "^2.6.4",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.1",
"@types/node": "^22.5.0",
"eslint": "^9.9.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"typescript-eslint": "^8.3.0"
},
"engines": {
"node": ">= 18.0.0"
}
}