forked from kiwiirc/irc-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "irc-framework",
"version": "4.1.0",
"description": "A better IRC framework for node.js",
"main": "index.js",
"dependencies": {
"eventemitter3": "^2.0.2",
"iconv-lite": "^0.4.11",
"lodash": "^4.17.4",
"middleware-handler": "^0.2.0",
"runes": "^0.4.3",
"socksjs": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"chai": "^3.4.1",
"chai-subset": "^1.2.0",
"istanbul": "^0.4.1",
"jshint": "^2.8.0",
"mocha": "^5.2.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"scripts": {
"test": "npm run lint && npm run coverage -- -R dot test/ --recursive",
"lint": "jshint src/ examples/ test/ || true",
"unit-test": "mocha --recursive",
"coverage": "istanbul cover --include-all-sources _mocha --",
"build": "webpack --config webpack.config.js",
"prepare": "npm run 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"
}