UNPKG

newsie

Version:

An NNTP Client Library targeting NodeJS. It supports the authentication, TLS encryption, base NNTP commands, and more.

90 lines (89 loc) 2.33 kB
{ "name": "newsie", "description": "An NNTP Client Library targeting NodeJS. It supports the authentication, TLS encryption, base NNTP commands, and more.", "repository": "gitlab:timrs2998/newsie", "version": "1.2.3", "type": "module", "main": "dist/index.js", "author": "timrs2998 <timrs2998@gmail.com>", "license": "AGPL-1.0", "keywords": [ "news", "nntp", "usenet" ], "homepage": "https://gitlab.com/timrs2998/newsie", "bugs": { "url": "https://gitlab.com/timrs2998/newsie/issues", "email": "incoming+timrs2998/newsie@gitlab.com" }, "engines": { "node": ">=8.9.0" }, "private": false, "devDependencies": { "@commitlint/cli": "^19.3.0", "@commitlint/config-conventional": "^19.2.2", "@eslint/js": "^9.6.0", "@semantic-release/gitlab-config": "^14.0.1", "@types/eslint__js": "^8.42.3", "@types/jest": "^29.5.12", "@types/node": "^20.12.12", "commitlint-gitlab-ci": "^0.0.4", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "husky": "^9.0.11", "jest": "^29.7.0", "prettier": "^3.2.5", "semantic-release": "^23.1.1", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "tsup": "^8.4.0", "typescript": "^5.8.2", "typescript-eslint": "^7.14.1" }, "scripts": { "prepare": "husky", "build:ci": "commitlint-gitlab-ci -x @commitlint/config-conventional && npm run build && npm run test && npm run lint", "lint": "eslint src/ test/ examples/", "build": "tsup --format esm src/index.ts --tsconfig tsconfig.dist.json --sourcemap --dts", "watch": "npm run build -- --watch src", "test": "jest" }, "jest": { "moduleFileExtensions": [ "ts", "js", "json" ], "transform": { ".(ts|js)$": [ "ts-jest", { "tsconfig": "tsconfig.json" } ] }, "testMatch": [ "<rootDir>test/**/*.test.(ts|js)" ], "testEnvironment": "node", "testTimeout": 10000 }, "prettier": { "arrowParens": "avoid", "printWidth": 100, "parser": "typescript", "semi": false, "singleQuote": true, "trailingComma": "none" }, "release": { "extends": "@semantic-release/gitlab-config" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] } }