irctokens
Version:
RFC1459 and IRCv3 protocol tokeniser
53 lines (52 loc) • 1.34 kB
JSON
{
"name": "irctokens",
"version": "2.0.1",
"description": "RFC1459 and IRCv3 protocol tokeniser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.production.json",
"build:watch": "npm run build -- --watch",
"test": "NODE_OPTIONS='--import tsx' mocha tests/**/*.test.ts",
"test:coverage": "c8 -r lcov -r text npm test",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swantzter/irctokens-js.git"
},
"keywords": [
"irc",
"ircv3",
"rfc1459",
"tokeniser"
],
"engines": {
"node": ">12"
},
"author": "Svante Bengtson <svante@swantzter.se> (https://swantzter.se)",
"license": "MIT",
"bugs": {
"url": "https://github.com/swantzter/irctokens-js/issues"
},
"homepage": "https://github.com/swantzter/irctokens-js#readme",
"files": [
"/dist"
],
"devDependencies": {
"@tsconfig/node24": "^24.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.2",
"@types/yaml": "^1.9.7",
"c8": "^10.1.3",
"eslint": "^9.39.1",
"mocha": "^11.7.5",
"neostandard": "^0.12.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"yaml": "^2.8.2"
}
}