listener-rss/package.json

51 lines
1.4 KiB
JSON
Raw Normal View History

2021-02-07 17:50:54 +01:00
{
"name": "listener-rss",
"version": "1.0.0",
"description": "A lightweight library to give some additions for the [rss-parser package](https://github.com/rbren/rss-parser).",
"main": "index.js",
"scripts": {
"test": "cross-env TS_NODE_PROJECT='./tests/tsconfig.json' mocha --require ts-node/register ./tests/**/*-spec.ts",
2021-02-13 17:40:22 +01:00
"build": "tsc -p ./src"
2021-02-07 17:50:54 +01:00
},
"repository": {
"type": "git",
"url": "gitea@zeteo.me:Outils-PeerTube/listener-rss.git"
},
"keywords": [
"rss",
"rss-parser"
],
"author": "Amaury Joly <amaury.joly@hotmail.com>",
"contributors": [
"Florent Fayolle <florent.git@zeteo.me>"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "4.3.0",
2021-03-28 16:20:54 +02:00
"cross-env": "7.0.3",
2021-02-07 17:50:54 +01:00
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prettier": "3.3.1",
"mocha": "8.2.1",
"prettier": "2.2.1",
"proxyquire": "2.1.3",
"sinon-chai": "3.5.0",
2021-03-28 16:20:54 +02:00
"ts-mock-imports": "1.3.3",
2021-02-07 17:50:54 +01:00
"ts-node": "9.1.1",
2021-03-28 16:20:54 +02:00
"ts-sinon": "2.0.1",
2021-02-07 17:50:54 +01:00
"tsc-watch": "^4.2.9",
"typescript": "^4.1.3"
},
"dependencies": {
"rss-parser": "3.11.0"
}
}