forked from kiwiirc/irc-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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"
}