@airplanegobrr/jackett-api
Version:
An api for 'Jackett' server requests
100 lines • 2.41 kB
JSON
{
"name": "@airplanegobrr/jackett-api",
"version": "1.0.6",
"description": "An api for 'Jackett' server requests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/AirplaneGobrr-Trash/jackett-api.git"
},
"keywords": [
"jackett",
"api",
"sonarr",
"radarr",
"plex"
],
"contributors": [
{
"name": "STRDcoders",
"url": "https://github.com/STRDCoders"
},
{
"name": "tomerblecher",
"url": "https://github.com/tomerblecher"
},
{
"name": "AirplaneGobrr",
"email": "airplane@airplanegobrr.xyz",
"url": "https://airplanegobrr.xyz"
}
],
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.27.2",
"depcheck": "^1.4.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"url-join": "^4.0.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"chai-http": "^5.1.1",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-http": "^4.2.4",
"@types/mocha": "^9.1.1",
"@types/node": "^22.13.14",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.14.0",
"eslint-plugin-jsdoc": "^39.3.2",
"husky": "^4.3.0",
"mocha": "^10.0.0",
"prettier": "2.6.2",
"pretty-quick": "^3.1.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"typescript": "^4.1.5"
},
"nyc": {
"include": [
"**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"build": "tsc -sourcemap -p ./tsconfig.json",
"run": "node -r source-map-support/register dist/index.js",
"start": "npm run build && npm run run",
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts --exit",
"depcheck": "depcheck --ignores \"source-map-support,ts-node,@types/chai-http,prettier,pretty-quick,eslint-plugin-jsdoc\"",
"lint": "eslint \"./{src,test}/**/*.ts\""
}
}