UNPKG

@wabarc/broker

Version:

Pack and store webpages from Telegram channel.

60 lines (59 loc) 1.62 kB
{ "name": "@wabarc/broker", "version": "0.3.5", "description": "Pack and store webpages from Telegram channel.", "main": "./dist/index.js", "types": "./dist/type.d.ts", "scripts": { "build": "tsc", "cli": "ts-node src/cli.ts", "cli:install": "npm run build && npm install -g", "format": "prettier --write '**/*.ts'", "format:check": "prettier --check '**/*.ts'", "lint": "eslint ./ --ext .ts", "test": "jest --no-cache --testTimeout 3000000", "prepub": "npm run clean; npm run format; npm run lint; npm run cli:install && broker -h", "clean": "rm -rf ./dist; rm -rf -- *.html" }, "bin": { "broker": "dist/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/wabarc/broker.git" }, "keywords": [ "archive", "wayback", "telegram" ], "author": "Wayback Archiver", "license": "GPL-3.0-or-later", "bugs": { "url": "https://github.com/wabarc/broker/issues" }, "homepage": "https://github.com/wabarc/broker#readme", "dependencies": { "@octokit/rest": "^18.3.5", "@wabarc/archiver": "^0.3.1", "axios": "^0.21.1", "commander": "^7.1.0" }, "devDependencies": { "@octokit/types": "^6.12.2", "@types/jest": "^26.0.21", "@typescript-eslint/eslint-plugin": "^4.18.0", "@typescript-eslint/parser": "^4.18.0", "eslint": "^7.22.0", "eslint-plugin-jest": "^24.3.2", "jest": "^26.6.3", "prettier": "^2.2.1", "ts-jest": "^26.5.4", "ts-node": "^9.1.1", "typescript": "^4.2.3", "typescript-formatter": "^7.2.2" }, "engines": { "node": ">= 12" } }