-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "@rowanmanning/feed-parser",
"version": "1.1.0",
"description": "A well-tested and resilient parser for RSS and Atom feeds",
"keywords": [
"atom",
"feed",
"rss"
],
"author": "Rowan Manning (https://rowanmanning.com/)",
"repository": {
"type": "git",
"url": "https://github.com/rowanmanning/feed-parser.git"
},
"homepage": "https://github.com/rowanmanning/feed-parser",
"bugs": "https://github.com/rowanmanning/feed-parser/issues",
"license": "MIT",
"engines": {
"node": "18.x || 20.x || 22.x",
"npm": "8.x || 9.x || 10.x"
},
"scripts": {
"build": "npm run build:types",
"build:types": "tsc --noEmit false --emitDeclarationOnly --project ./jsconfig.json",
"verify": "npm run verify:biome && npm run verify:types",
"verify:biome": "biome check",
"verify:types": "tsc --noEmit --project ./jsconfig.json",
"test": "npm run test:coverage && npm run test:integration",
"test:unit": "cd test/unit && node --test",
"test:coverage": "nyc npm run test:unit",
"test:integration": "node test/integration/fixtures/load.js && cd test/integration && node --test",
"prepare": "husky || true"
},
"dependencies": {
"fast-xml-parser": "^4.0.8",
"html-entities": "^2.3.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rowanmanning/biome-config": "^1.2.0",
"feedparser": "^2.2.10",
"husky": "^9.0.7",
"nyc": "^17.0.0",
"testdouble": "^3.16.5",
"typescript": "^5.5.2"
},
"main": "index.js",
"nyc": {
"reporter": [
"html",
"text"
],
"eager": true
}
}