tekko
Version:
Another IRC message parser and formatter
61 lines (60 loc) • 1.39 kB
JSON
{
"name": "tekko",
"version": "3.0.1",
"description": "Another IRC message parser and formatter",
"author": "Alexandre Breteau <contact@seldszar.fr> (https://seldszar.fr)",
"repository": "seldszar/tekko",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"formatter",
"irc",
"message",
"parser"
],
"engine": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext=ts .",
"prepare": "husky install",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}