UNPKG

irc-framework

Version:
69 lines (68 loc) 2.13 kB
{ "name": "irc-framework", "version": "4.14.0", "description": "A better IRC framework for node.js", "main": "src/", "browser": "dist/browser/src/", "dependencies": { "buffer": "^6.0.3", "core-js": "^3.38.1", "eventemitter3": "^5.0.1", "grapheme-splitter": "^1.0.4", "iconv-lite": "^0.6.3", "isomorphic-textencoder": "^1.0.1", "lodash": "^4.17.21", "middleware-handler": "^0.2.0", "regenerator-runtime": "^0.14.1", "socks": "^2.8.3", "stream-browserify": "^3.0.0", "util": "^0.12.5" }, "devDependencies": { "@babel/cli": "^7.25.6", "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.4", "chai": "^4.5.0", "chai-subset": "^1.6.0", "compression-webpack-plugin": "^10.0.0", "eslint": "^8.57.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-n": "^15.7.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.6.0", "mocha": "^10.7.3", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", "shx": "^0.3.4", "sinon": "^15.2.0", "sinon-chai": "^3.7.0", "webpack": "^5.94.0", "webpack-cli": "^5.1.4" }, "scripts": { "test": "npm-run-all lint coverage", "lint": "eslint src/ examples/ test/", "unit-test": "mocha --recursive", "coverage": "nyc mocha -R dot test/ --recursive", "build": "npm-run-all build-browser-es5 build-browser-bundle", "build-browser-es5": "babel src/ -d dist/browser/src/ --delete-dir-on-start && shx mv ./dist/browser/src/transports/default_browser.js ./dist/browser/src/transports/default.js && shx rm ./dist/browser/src/transports/net.js", "build-browser-bundle": "webpack --config webpack.config.js", "prepare": "npm-run-all build" }, "repository": { "type": "git", "url": "git+https://github.com/kiwiirc/irc-framework.git" }, "keywords": [ "IRC", "bot", "messaging" ], "author": "prawnsalad", "license": "MIT", "bugs": { "url": "https://github.com/kiwiirc/irc-framework/issues" }, "homepage": "https://github.com/kiwiirc/irc-framework#readme" }