@bliztek/feed-generator
Version:
A simple and lightweight Node.js library for generating RSS 2.0, Atom, and JSON Feed formats.
43 lines (42 loc) • 936 B
JSON
{
"name": "@bliztek/feed-generator",
"version": "1.0.4",
"description": "A simple and lightweight Node.js library for generating RSS 2.0, Atom, and JSON Feed formats.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Steven Brown",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bliztek/feed-generator.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build"
},
"keywords": [
"rss",
"atom",
"json-feed",
"generator",
"blog",
"syndication"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
}
}